/**
  * Cancela a transação em andamento.
  *
  * @return Driver : fluent interface
  */
 public function rollback()
 {
     $this->connection->rollback();
     return $this;
 }
Example #2
0
 /**
  * Cancel all pending queries (does not finish the transaction
  */
 public function rollback()
 {
     $this->dbc->rollback();
 }