From 4034c58daad042e98ede9ae91e5980a9c7d49f8b Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 7 Oct 2015 14:05:47 +0200 Subject: [PATCH] fixed closing the sqlite result - caused problems --- db/result/ResultSQLite.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/result/ResultSQLite.php b/db/result/ResultSQLite.php index 7a7996f..6c9c2d2 100644 --- a/db/result/ResultSQLite.php +++ b/db/result/ResultSQLite.php @@ -17,8 +17,8 @@ class ResultSQLite extends \SYSTEM\DB\Result{ $this->close();} public function close(){ - if($this->stmt){ - $this->stmt->close();} + /*if($this->stmt){ + $this->stmt->close();}*/ } public function count(){