You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Portability\Statement::fixRow() implementation doesn't take into account that mixed $row is not always iterable (particularly in the case if $fetchMode = PDO::FETCH_COLUMN).
Warning: Invalid argument supplied for foreach() in vendor/doctrine/dbal/lib/Doctrine/DBAL/Portability/Statement.php on line 203
Besides that, the Portability\Statement::connect() implementation forcedly replaces the portability value from whatever provided in the connection parameters with PORTABILITY_DB2 which is inconsistent with the rest of the supported platforms.
The text was updated successfully, but these errors were encountered:
The
Portability\Statement::fixRow()
implementation doesn't take into account thatmixed $row
is not always iterable (particularly in the case if$fetchMode = PDO::FETCH_COLUMN
).Produces:
Besides that, the
Portability\Statement::connect()
implementation forcedly replaces theportability
value from whatever provided in the connection parameters withPORTABILITY_DB2
which is inconsistent with the rest of the supported platforms.The text was updated successfully, but these errors were encountered: