コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function rollback()
 {
     if ($this->_pdoTransactionsSupported() === true) {
         parent::rollback();
     } else {
         $this->exec('ROLLBACK TRANSACTION');
     }
 }