CodeIgniter:事务错误与 MySQL 错误
我如何判断事务是否为 FALSE 或者是否发生了其他事情(锁定表)?
$this->db->trans_start();
$this->db->where('id', $id)
->limit(1);
$q = $this->db->delete('table');
$this->db->trans_complete();
return $this->db->trans_status() ? TRUE : FALSE;
例如,事务可能由于外键约束而失败。如果是这种情况,我将运行另一个查询。在任何其他情况下,我想重试原始查询。
How can I tell if the transaction was FALSE or if something else happened(locked table)?
$this->db->trans_start();
$this->db->where('id', $id)
->limit(1);
$q = $this->db->delete('table');
$this->db->trans_complete();
return $this->db->trans_status() ? TRUE : FALSE;
For example, the transaction might fail because of a foreign key constraint. If that is the case I would run another query. In any other case I want to retry the original query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查查询是否成功
Check if the query was succesfull