|
我是这么写的
try{
$this->db->trans_strict(FALSE);
$this->db->trans_begin();
//一些判断如果出错
$this->db->trans_rollback();
//一些mysql语句更新,增加之类的
/*这当中经常会发生一些锁表的问题,请问怎么解锁*/
$this->db->trans_complete();
}catch{
$this->db->trans_rollback();
show_error($exc->getMessage(),500,'错误');
exit;
}
|
|