summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-02-04 22:29:03 +0100
committerDerek Allard <derek.allard@ellislab.com>2010-02-04 22:29:03 +0100
commit4860ec52f5bdf917d12f511ecd07b7d4797f0d91 (patch)
treeb41d18404cd886a3e927bf3cf82b5914b5d3d70f /system/database/drivers/oci8
parent62396232658467b463f37e55bec159aadc188edd (diff)
fixing a series of errors in (ironically) error display in some database drivers
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index cd0e09577..1ad05a793 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -244,7 +244,7 @@ class CI_DB_oci8_driver extends CI_DB {
if ($this->db_debug)
{
log_message('error', 'Invalid query: '.$package.'.'.$procedure);
- return $this->display_error('db_invalid_query');
+ return $this->db->display_error('db_invalid_query');
}
return FALSE;
}
@@ -443,7 +443,7 @@ class CI_DB_oci8_driver extends CI_DB {
function insert_id()
{
// not supported in oracle
- return $this->display_error('db_unsupported_function');
+ return $this->db->display_error('db_unsupported_function');
}
// --------------------------------------------------------------------