summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-10 19:47:59 +0200
committeradmin <devnull@localhost>2006-10-10 19:47:59 +0200
commit7099a589d1719311427d7552523ec962ebc3b650 (patch)
treee6c4c09d62f09e8b6c5f85bd83c7b6eaf4b7fc98 /system/database/drivers/oci8
parent1e3039878265b09e85f14e6b5ad3fbb6d4aa24c3 (diff)
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index e83c640bd..794405a03 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -163,7 +163,8 @@ class CI_DB_oci8_driver extends CI_DB {
*/
function get_cursor()
{
- return $this->curs_id = ocinewcursor($this->conn_id);
+ $this->curs_id = ocinewcursor($this->conn_id);
+ return $this->curs_id;
}
// --------------------------------------------------------------------