Making mysql trigger_error on query failure

This commit is contained in:
Xkeeper 2011-11-13 17:18:51 -08:00
parent ce7da5ee40
commit 8d659c0958

View File

@ -8,14 +8,12 @@
function selectdb($dbname) {return mysql_select_db($dbname);}
function query($query){
// if($_GET[q])
// print "$query<br>";
$start=microtime(true);
if($res=mysql_query($query)){
$this->queries++;
$this->rowst+=@mysql_num_rows($res);
} else {
// print mysql_error();
trigger_error("MySQL error: ". mysql_error(), E_USER_WARNING);
}
$this->time+=microtime(true)-$start;