diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-25 20:44:56 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-25 20:44:56 +0100 |
commit | a5f2f694c6fb0cf3286a4ae44af47ac77684a36a (patch) | |
tree | 8fa3be480df290fcf859c8d2d7f318714281a8bc /system/database | |
parent | af5d5586a5040de24335e483edb17a2657ddeb21 (diff) |
Pass CI_DB_driver::curs_id to CI_DB_oci8_result ...
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index d9d83d55d..117db68e8 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -395,7 +395,7 @@ class CI_DB_driver { if ($this->dbdriver === 'oci8') { $RES->stmt_id = $this->stmt_id; - $RES->curs_id = NULL; + $RES->curs_id = $this->curs_id; $RES->limit_used = $this->limit_used; $this->stmt_id = FALSE; } |