示例#1
0
 /**
  * @ignore
  */
 public function rollBack()
 {
     $this->connection->rollback();
     parent::rollBack();
 }
示例#2
0
 /**
  * @ignore
  */
 public function rollBack()
 {
     if ($this->transactionLevel === 1) {
         $this->connection->rollBack();
     } else {
         $this->connection->exec('ROLLBACK TO SAVEPOINT LEVEL' . $this->transactionLevel);
     }
     parent::rollBack();
 }