Esempio n. 1
0
 /**
  * 回滚事务
  */
 function rollback()
 {
     if (!$this->_in_transaction) {
         return;
     }
     $this->_dbo->completeTrans(false);
     $this->_in_transaction = false;
 }
Esempio n. 2
0
 function tearDown()
 {
     $this->_conn->completeTrans(false);
 }