summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authortzmfreedom <makoto_tajitsu@hotmail.co.jp>2021-01-17 14:13:19 +0900
committerNikita Popov <nikita.ppv@gmail.com>2021-01-25 14:44:56 +0100
commita8dd009f23ab9ccd6b63f58a203d49fd0513a50d (patch)
tree3d4b678190557ce2bd602856b3e4af2e490f3d82 /UPGRADING
parentcc3e03c5122b1639e0bcca60f8bcf597605568ad (diff)
downloadphp-git-a8dd009f23ab9ccd6b63f58a203d49fd0513a50d.tar.gz
Allow specifying sqlite3 DSN (file:/) in PDO SQLite
Closes GH-6610.
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING7
1 files changed, 7 insertions, 0 deletions
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.