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