Commit 203d037d authored by ivan's avatar ivan Committed by Benjamin Eberlei

Fixed error with ORA-03131 in oracle stored procedures

bindParam function expects length parameter for oci_bind_by_name oci8
parent 125e0534
......@@ -116,9 +116,9 @@ class Statement implements \IteratorAggregate, DriverStatement
* @param integer $type The PDO binding type.
* @return boolean TRUE on success, FALSE on failure.
*/
public function bindParam($name, &$var, $type = PDO::PARAM_STR)
public function bindParam($name, &$var, $type = PDO::PARAM_STR, $length = null)
{
return $this->stmt->bindParam($name, $var, $type);
return $this->stmt->bindParam($name, $var, $type, $length );
}
/**
......
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