/**
  * Cancela a transação em andamento.
  *
  * @return Driver : fluent interface
  */
 public function rollback()
 {
     $this->connection->rollback();
     return $this;
 }
예제 #2
0
파일: Database.php 프로젝트: blast007/bzion
 /**
  * Cancel all pending queries (does not finish the transaction
  */
 public function rollback()
 {
     $this->dbc->rollback();
 }