exec('ROLLBACK TRANSACTION'); } /** * Performs the commit. * * @override */ public function commit() { $this->exec('COMMIT TRANSACTION'); } /** * Begins a database transaction. * * @override */ public function beginTransaction() { $this->exec('BEGIN TRANSACTION'); } } ?>