From a8dd009f23ab9ccd6b63f58a203d49fd0513a50d Mon Sep 17 00:00:00 2001 From: tzmfreedom Date: Sun, 17 Jan 2021 14:13:19 +0900 Subject: Allow specifying sqlite3 DSN (file:/) in PDO SQLite Closes GH-6610. --- UPGRADING | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'UPGRADING') diff --git a/UPGRADING b/UPGRADING index facdf30377..29701c3714 100644 --- a/UPGRADING +++ b/UPGRADING @@ -126,6 +126,13 @@ PHP 8.1 UPGRADE NOTES echo $h, "\n"; ``` +- PDO SQLite: + . SQLite's "file:" DSN syntax is now supported, which allows specifying + additional flags. This feature is not available if open_basedir is set. + Example: + + new PDO('sqlite:file:path/to/sqlite.db?mode=ro') + - Posix: . Added POSIX_RLIMIT_KQUEUES and POSIX_RLIMIT_NPTS. These rlimits are only available on FreeBSD. -- cgit v1.2.1