From 6d88b37a4744b2b3dcadb2a86ad1afe74ef7f24d Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sun, 4 Oct 2015 05:07:36 +0200 Subject: [PATCH] missing functions for sqlite connection --- db/connection/ConnectionSQLite.php | 6 ++++++ 1 file changed, 6 insertions(+) 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