mirror of
https://github.com/silverstripe/silverstripe-sqlite3
synced 2024-10-22 15:05:37 +00:00
MINOR: Removed destructor for PDOStatement
This commit is contained in:
parent
b0fd65c554
commit
e8726d1c4e
7
README
7
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
|
||||
---------------------------------
|
||||
|
@ -1074,10 +1074,6 @@ class SQLite3Query extends SS_Query {
|
||||
$this->handle = $handle;
|
||||
}
|
||||
|
||||
public function __destruct() {
|
||||
$this->handle->finalize();
|
||||
}
|
||||
|
||||
public function __destroy() {
|
||||
$this->handle->finalize();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user