summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2010-08-25 18:03:28 +0200
committerPascal Kriete <pascal.kriete@ellislab.com>2010-08-25 18:03:28 +0200
commit60f8c395f24ba6db80d510892bcc53ce5bf9f4eb (patch)
tree3455e319e3bdebf59e35fedcbfd006e6d12037c2 /system/database
parent595bfd1484ecc8212d6c3c028210b4d1ae78baba (diff)
Modified the database driver's display_error() method to show the filename and line number of the failed query.
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_driver.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index dfef42757..8e6f88801 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1169,6 +1169,24 @@ class CI_DB_driver {
$message = ( ! is_array($error)) ? array(str_replace('%s', $swap, $LANG->line($error))) : $error;
}
+ // Find the most likely culprit of the error by going through
+ // the backtrace until the source file is no longer in the
+ // database folder.
+
+ $trace = debug_backtrace();
+
+ foreach($trace as $call)
+ {
+ if (isset($call['file']) && strpos($call['file'], BASEPATH.'database') === FALSE)
+ {
+ // Found it - use a relative path for safety
+ $message[] = 'Filename: '.str_replace(array(BASEPATH, APPPATH), '', $call['file']);
+ $message[] = 'Line Number: '.$call['line'];
+
+ break;
+ }
+ }
+
$error =& load_class('Exceptions', 'core');
echo $error->show_error($heading, $message, 'error_db');
exit;