PHP Try and Catch for SQL Insert

2022-08-30 16:30:22

我的网站上有一个页面(高流量),每次页面加载时都会进行插入。

我很好奇最快,最安全的方式(捕获错误)并在系统无法插入MySQL时继续。我应该使用尝试/捕获或死亡或其他东西。我想确保插入发生,但如果由于某种原因它不能,我希望页面继续加载。

...
$db = mysql_select_db('mobile', $conn);
mysql_query("INSERT INTO redirects SET ua_string = '$ua_string'") or die('Error #10');
mysql_close($conn);
...

答案 1

检查文档显示其在错误时返回。因此,请使用返回状态而不是 。如果失败,它将返回 false,您可以记录(或任何您想要执行的操作),然后继续。falseor die()

$rv = mysql_query("INSERT INTO redirects SET ua_string = '$ua_string'");
if ( $rv === false ){
     //handle the error here
}
//page continues loading

答案 2

这可以解决问题,

function createLog($data){ 
    $file = "Your path/incompletejobs.txt";
    $fh = fopen($file, 'a') or die("can't open file");
    fwrite($fh,$data);
    fclose($fh);
}
$qry="INSERT INTO redirects SET ua_string = '$ua_string'"   
$result=mysql_query($qry);
if(!$result){
    createLog(mysql_error());
}

推荐