diff --git a/db/connection/ConnectionSQLite.php b/db/connection/ConnectionSQLite.php index 1cca3a3..f6bcb9f 100644 --- a/db/connection/ConnectionSQLite.php +++ b/db/connection/ConnectionSQLite.php @@ -45,4 +45,10 @@ class ConnectionSQLite extends ConnectionAbstr { public function exec($query){ return $this->connection->exec($query); } + + public function commit(){ + throw new \Exception('Could not start Transaction: not implemented');} + + public function trans(){ + throw new \Exception('Could not start Transaction: not implemented');} } \ No newline at end of file