Codeigniter Transactions

前端 未结 6 1742
离开以前
离开以前 2020-11-28 07:21

I\'m using Codeigniter transactions

$this->db->trans_start();
$this->db->query(\'AN SQL QUERY...\');
$this->db->trans_complete();
         


        
6条回答
  •  粉色の甜心
    2020-11-28 08:08


    Note: Make sure to use $this->db->trans_begin() when running manual transactions, NOT $this->db->trans_start().

    $this -> db -> trans_begin(); 
    $this -> utils -> insert_function ( $data );
    $this -> utils -> update_function2 ( $test ); 
    $this -> db -> trans_complete ();
    

    Certify in case use MySql, use in InnoDb Format

提交回复
热议问题