用户
 找回密码
 入住 CI 中国社区
搜索
查看: 4341|回复: 2
收起左侧

[版本 2.x] ci的事务处理的锁表问题

[复制链接]
发表于 2015-3-16 16:25:21 | 显示全部楼层 |阅读模式
我是这么写的
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;
}

本版积分规则