1
0
mirror of synced 2025-02-21 22:53:15 +03:00

DDC-527 - Fixed bug in OCI8 Driver

This commit is contained in:
Benjamin Eberlei 2010-05-15 23:07:00 +02:00
parent 1067118174
commit d098d62e1e

View File

@ -175,7 +175,8 @@ class OCI8Statement implements \Doctrine\DBAL\Driver\Statement
}
$result = array();
oci_fetch_all($this->_sth, $result, 0, -1, self::$fetchStyleMap[$fetchStyle] | OCI_RETURN_NULLS | OCI_FETCHSTATEMENT_BY_ROW);
oci_fetch_all($this->_sth, $result, 0, -1,
self::$fetchStyleMap[$fetchStyle] | OCI_RETURN_NULLS | OCI_FETCHSTATEMENT_BY_ROW | OCI_RETURN_LOBS);
return $result;
}