diff --git a/README b/README index de0c537..1765614 100644 --- a/README +++ b/README @@ -41,16 +41,15 @@ E.g.: http://www.my-project.com/?avoidConflict=1 Tested stacks ------------- -OSX leopard, XAMP with PHP 5.3.0, SQLite3.6.3 +OSX leopard, XAMPP with PHP 5.3.0, SQLite3.6.3 +Ubuntu, PHP 5.2.4, SQLite3.4.2 +WinXP, XAMPP with PHP 5.3.0, SQLite3.6.16 Open Issues ----------- - SQLite3 may not work with certain modules as they are using custom SQL statements passed to the DB class directly ;( -- the SQLite3 locking behavior has to be explored, this is constantly causing trouble - there is no real fulltext search yet and the build-in search engine is not ordering by relevance, check out fts3 -- needs testing on different stacks - Things to note when using SQLite3 --------------------------------- diff --git a/code/SQLite3Database.php b/code/SQLite3Database.php index 5f86fc6..9c2eabc 100644 --- a/code/SQLite3Database.php +++ b/code/SQLite3Database.php @@ -1074,10 +1074,6 @@ class SQLite3Query extends SS_Query { $this->handle = $handle; } - public function __destruct() { - $this->handle->finalize(); - } - public function __destroy() { $this->handle->finalize(); }