Commit 125e0534 authored by ivan's avatar ivan Committed by Benjamin Eberlei

Revert "bindParam function expects length parameter for oci_bind_by_name oci8"

This reverts commit 17a265d9.
parent 134c9f42
...@@ -116,9 +116,9 @@ class Statement implements \IteratorAggregate, DriverStatement ...@@ -116,9 +116,9 @@ class Statement implements \IteratorAggregate, DriverStatement
* @param integer $type The PDO binding type. * @param integer $type The PDO binding type.
* @return boolean TRUE on success, FALSE on failure. * @return boolean TRUE on success, FALSE on failure.
*/ */
public function bindParam($name, &$var, $type = PDO::PARAM_STR, $length = null) public function bindParam($name, &$var, $type = PDO::PARAM_STR)
{ {
return $this->stmt->bindParam($name, $var, $type, $length); return $this->stmt->bindParam($name, $var, $type);
} }
/** /**
......
Subproject commit 4200b4bc95ae3c1b03d943cd875277e35a17898a
Subproject commit efa94de25beef4aefaeb7972c122798f9876fc39
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment