diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-10-13 12:15:58 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-10-13 12:15:58 +0200 |
commit | 87392eff1a3b06cad2449dca8dc90942f3721900 (patch) | |
tree | 970dc65c3ad435c63052a652763ae7bfaa7d24e5 /UPGRADING | |
parent | be2ddc6b6575da0b8e7ed235464f7e23c71674c7 (diff) | |
download | php-git-87392eff1a3b06cad2449dca8dc90942f3721900.tar.gz |
Require SQLite ≥ 3.5.0 for ext/sqlite3 and ext/pdo_sqlite
It is possible to pass flags when opening an SQLite database. For
Sqlite < 3.5.0 these are ignored, since `sqlite3_open` doesn't support
flags. Neither a warning or notice is raised in this case, nor is this
behavior documented in the PHP manual. Instead of fixing it either
way, we lift the requirement to SQLite 3.5.0 (released on 2007-09-04)
instead of the former SQLite 3.3.9 (released on 2007-01-04).
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ PHP 7.4 UPGRADE NOTES - SQLite3: . The bundled libsqlite has been removed. To build the SQLite3 and/or - PDO_SQLite extensions a system libsqlite3 ≥ 3.3.9 is now required. + PDO_SQLite extensions a system libsqlite3 ≥ 3.5.0 is now required. - Zip: . The bundled libzip library has been removed. A system libzip >= 0.11 is now |