dongxixia6399 2014-01-06 16:38
浏览 98
已采纳

php mysqli - 回滚后插入语句以记录错误不起作用

I have the following generic snippet of code I use to try and catch mysqli errors and put them into a table I have that would keep a log of the errors. I just put in a generic SQL statement that would error for the example:

$sql = "UPDATE table_x SET mycol = 1/0";

if(!$conn->query($sql))
{
$err = $conn->error;
$conn->rollback();
$conn->query("INSERT INTO my_error_log (page_name, error_text, time_stamp) VALUES ('" . basename(__FILE__) . " Line:" . __LINE__ . "', '$err', NOW())");
$conn->commit();
die("Error occurred");
}

The transaction rolls back, but nothing ever gets written to the my_error_log table.

Thanks for the help!

  • 写回答

1条回答 默认 最新

  • duanjiashai9140 2014-01-06 16:46
    关注

    I'd suggest using prepared statements for this. I'd suggest using them anytime you need to concatenate a string into an SQL query string.

    $sql = "UPDATE table_x SET mycol = 1/0";
    
    if(!$conn->query($sql)){
        $err = $conn->error;
        $conn->rollback();
    
        $stmt = $conn->prepare('INSERT INTO my_error_log (page_name, error_text, time_stamp) VALUES (?,?,NOW())')
        $stmt->bind_param('ss', basename(__FILE__) . " Line:" . __LINE__, $err);
        $stmt->execute();
    
        $conn->commit();
        die("Error occurred");
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败