File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,18 @@ Opcache:
30
30
. If JIT is enabled, PHP will now exit with a fatal error on startup in case
31
31
of JIT startup initialization issues. (danog)
32
32
33
+ PDO:
34
+ . Fixed setAttribute and getAttribute (SakiTakamachi)
35
+
36
+ PDO_DBLIB:
37
+ . Fixed setAttribute and getAttribute (SakiTakamachi)
38
+
39
+ PDO_FIREBIRD:
40
+ . Fixed setAttribute and getAttribute (SakiTakamachi)
41
+
42
+ PDO_MYSQL:
43
+ . Fixed setAttribute and getAttribute (SakiTakamachi)
44
+
33
45
PDO_PGSQL:
34
46
. Fixed GH-12423, DSN credentials being prioritized over the user/password
35
47
PDO constructor arguments. (SakiTakamachi)
Original file line number Diff line number Diff line change @@ -26,6 +26,17 @@ PHP 8.4 UPGRADE NOTES
26
26
Consult sections 2. New Features and 6. New Functions for a list of
27
27
newly implemented methods and constants.
28
28
29
+ - PDO_DBLIB:
30
+ . DBLIB_ATTR_STRINGIFY_UNIQUEIDENTIFIER and DBLIB_ATTR_DATETIME_CONVERT have
31
+ been changed to set value as a bool.
32
+
33
+ - PDO_FIREBIRD:
34
+ . ATTR_AUTOCOMMIT has been changed to get the value as a bool.
35
+
36
+ - PDO_MYSQL:
37
+ . ATTR_AUTOCOMMIT, ATTR_EMULATE_PREPARES, MYSQL_ATTR_DIRECT_QUERY have been
38
+ changed to get values as bool.
39
+
29
40
- PDO_PGSQL:
30
41
. The DSN's credentials, when set, are given priority over their PDO
31
42
constructor counterparts, being closer to the documentation states.
@@ -136,6 +147,16 @@ PHP 8.4 UPGRADE NOTES
136
147
. The behavior of mb_strcut is more consistent now on invalid UTF-8 and UTF-16
137
148
strings. (For valid UTF-8 and UTF-16 strings, there is no change.)
138
149
150
+ - PDO:
151
+ . Enabled to get the value of ATTR_STRINGIFY_FETCHES.
152
+
153
+ - PDO_FIREBIRD:
154
+ . Enabled to get values of FB_ATTR_DATE_FORMAT, FB_ATTR_TIME_FORMAT,
155
+ FB_ATTR_TIMESTAMP_FORMAT.
156
+
157
+ - PDO_MYSQL:
158
+ . Enabled to get the value of ATTR_FETCH_TABLE_NAMES.
159
+
139
160
- PGSQL:
140
161
. pg_select, the conditions arguments accepts an empty array and is optional.
141
162
You can’t perform that action at this time.
0 commit comments