mysql error
Posted: Thu Sep 20, 2007 9:06 am
i'm using adodb to connect to mysql.
tried this
but it dies even if the sql is executed. Can anyone see why this is? I have a function called errorReport that will e-mail the results of the error.
--Mark
tried this
Code: Select all
$sql = "INSERT INTO this that"
$query = $db->execute( $sql ) or die ( errorReport( $db->ErrorMsg(), __FILE__, __LINE__, $sql ) );
--Mark