mirror of
https://github.com/silverstripe/silverstripe-sqlite3
synced 2024-10-22 17:05:37 +02:00
BUGFIX Fixed supportsTransactions() to use version_compare() so it doesn't break on non-scalar versions like '3.7.1'
This commit is contained in:
parent
b65482f8d1
commit
0dfbf538b6
@ -939,7 +939,7 @@ class SQLite3Database extends SS_Database {
|
|||||||
* Does this database support transactions?
|
* Does this database support transactions?
|
||||||
*/
|
*/
|
||||||
public function supportsTransactions(){
|
public function supportsTransactions(){
|
||||||
return !($this->getVersion() < 3.6);
|
return version_compare($this->getVersion(), '3.6', '>=');
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user