summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
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.