|
$this->load->model('document/document_model');
$this->document_model->db->trans_begin();
$this->document_model->操作1;
$this->document_model->操作2;
$this->document_model->操作3;
$this->load->model('document/document_model111');
$this->document_model1111->操作1;
$this->document_model1111->操作2;
$this->document_model1111->操作3;
$this->document_model1111->db->trans_complete();
这样做事务回滚会生效吗? 求大神解答!
|
|