diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-07 02:59:08 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-07 02:59:08 +0200 |
commit | 482ee4325894bb05b4f97bb9e9ded14e5fce93ba (patch) | |
tree | 5d91fba546300b8ef81ca0e055480e6b3319eb54 /system/database/drivers/oci8/oci8_driver.php | |
parent | a2a240a87baa0cf6a425837158880f5235e3bca6 (diff) |
Fixed Oracle bug (#3306) that was preventing multiple queries in one action
Diffstat (limited to 'system/database/drivers/oci8/oci8_driver.php')
-rw-r--r-- | system/database/drivers/oci8/oci8_driver.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php index 98c993291..362da58fb 100644 --- a/system/database/drivers/oci8/oci8_driver.php +++ b/system/database/drivers/oci8/oci8_driver.php @@ -141,6 +141,7 @@ class CI_DB_oci8_driver extends CI_DB { {
// oracle must parse the query before it is run. All of the actions with
// the query are based on the statement id returned by ociparse
+ $this->stmt_id = FALSE;
$this->_set_stmt_id($sql);
ocisetprefetch($this->stmt_id, 1000);
return @ociexecute($this->stmt_id, $this->_commit);
|