missing functions for sqlite connection

This commit is contained in:
Ulf Gebhardt 2015-10-04 05:07:36 +02:00
parent 50d263339e
commit 6d88b37a47

View File

@ -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');}
}