MINOR: Removed destructor for PDOStatement

This commit is contained in:
Andreas Piening 2010-01-24 07:38:43 +00:00
parent b0fd65c554
commit e8726d1c4e
2 changed files with 3 additions and 8 deletions

7
README
View File

@ -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
---------------------------------

View File

@ -1074,10 +1074,6 @@ class SQLite3Query extends SS_Query {
$this->handle = $handle;
}
public function __destruct() {
$this->handle->finalize();
}
public function __destroy() {
$this->handle->finalize();
}