Dingo db errors

by mungushume@monkeyr.com

Files to update

\system\driver\db\pdo.php
\system\library\db.php

Example Usage

<?php

db::query("select * from nonexistanttable");

if(($sqlerror = db::lasterror()))
{
	echo "<pre>";
	print_r($sqlerror);
	echo "</pre>";
}

?>

Example Output with define('DEBUG',FALSE);

Array
(
    [0] => 42S02
    [1] => 1146
    [2] => Table 'nonexistanttable' doesn't exist
)

Example Output with define('DEBUG',TRUE);

Notice: DB SELECT Failed with "Table 'nonexistanttable' doesn't exist"

select * from nonexistanttable
In current file At Line (unknown)

Array
(
    [0] => 42S02
    [1] => 1146
    [2] => Table 'nonexistanttable' doesn't exist
)