summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-02-05 17:14:49 +0100
committerDerek Allard <derek.allard@ellislab.com>2010-02-05 17:14:49 +0100
commitfac8fbc8bd60399110c8daf4b87dddc9397f5dc7 (patch)
tree7d09474406555c0877aef7f74512bbaa98185af2 /system/database/drivers
parent4860ec52f5bdf917d12f511ecd07b7d4797f0d91 (diff)
display_error in driver needs no db reference
Diffstat (limited to 'system/database/drivers')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php4
-rw-r--r--system/database/drivers/sqlite/sqlite_driver.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 1ad05a793..cd0e09577 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->db->display_error('db_invalid_query');
+ return $this->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->db->display_error('db_unsupported_function');
+ return $this->display_error('db_unsupported_function');
}
// --------------------------------------------------------------------
diff --git a/system/database/drivers/sqlite/sqlite_driver.php b/system/database/drivers/sqlite/sqlite_driver.php
index 4309c1656..c08ed2a56 100644
--- a/system/database/drivers/sqlite/sqlite_driver.php
+++ b/system/database/drivers/sqlite/sqlite_driver.php
@@ -63,7 +63,7 @@ class CI_DB_sqlite_driver extends CI_DB {
if ($this->db_debug)
{
- $this->db->display_error($error, '', TRUE);
+ $this->display_error($error, '', TRUE);
}
return FALSE;
@@ -88,7 +88,7 @@ class CI_DB_sqlite_driver extends CI_DB {
if ($this->db_debug)
{
- $this->db->display_error($error, '', TRUE);
+ $this->display_error($error, '', TRUE);
}
return FALSE;