Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.3
-
Fix Version/s: 2.3
-
Component/s: None
-
Security Level: All
-
Labels:None
-
Environment:PDO_MySql
Description
i have this error in version 2.3.0-RC1
in DBAL/STatement.php on aound line 191 you will find:
public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
{ return $this->stmt->setFetchMode($fetchMode, $arg2, $arg3); }the problem is that php throws me a Exception:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: fetch mode doesn't allow any extra arguments'
the reason for the exception is that setFetchMode doesnt support null as second/third argument.
somebody also described it in the php issue tracker:
https://bugs.php.net/bug.php?id=54545