Skip to content

Commit 0abd54d

Browse files
jrfnlTimWolla
authored andcommitted
[skip ci] 8.4 | UPGRADING: join PDO entries
There were multiple headers for the same PDO extensions in the "New features" section. This joins these together.
1 parent 68d5c81 commit 0abd54d

File tree

1 file changed

+18
-26
lines changed

1 file changed

+18
-26
lines changed

UPGRADING

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,25 @@ PHP 8.4 UPGRADE NOTES
302302
extended to support those keys.
303303

304304
- PDO:
305+
. Added support for driver-specific subclasses.
306+
RFC: https://wiki.php.net/rfc/pdo_driver_specific_subclasses
307+
This RFC adds subclasses for PDO in order to better support
308+
database-specific functionalities. The new classes are
309+
instantiatable either via calling the PDO::connect() method
310+
or by invoking their constructor directly.
305311
. Added support for driver specific SQL parsers. The default parser supports:
306312
- single and double quoted literals, with doubling as escaping mechanism.
307313
- two-dashes and non-nested C-style comments.
308314
RFC: https://wiki.php.net/rfc/pdo_driver_specific_parsers
309315

316+
- PDO_DBLIB:
317+
. Added class Pdo\DbLib.
318+
319+
- PDO_FIREBIRD:
320+
. Added class Pdo\Firebird.
321+
310322
- PDO_MYSQL:
323+
. Added class Pdo\Mysql.
311324
. Added custom parser supporting:
312325
- single and double-quoted literals, with doubling and backslash as escaping
313326
mechanism
@@ -316,7 +329,11 @@ PHP 8.4 UPGRADE NOTES
316329
and hash-comments
317330
RFC: https://wiki.php.net/rfc/pdo_driver_specific_parsers
318331

332+
- PDO_ODBC:
333+
. Added class Pdo\Odbc.
334+
319335
- PDO_PGSQL:
336+
. Added class Pdo\Pgsql.
320337
. Added custom parser supporting:
321338
- single and double quoted literals, with doubling as escaping mechanism
322339
- C-style "escape" string literals (E'string')
@@ -326,6 +343,7 @@ PHP 8.4 UPGRADE NOTES
326343
RFC: https://wiki.php.net/rfc/pdo_driver_specific_parsers
327344

328345
- PDO_SQLITE:
346+
. Added class Pdo\Sqlite.
329347
. Added custom parser supporting:
330348
- single, double quoted, and backtick literals, with doubling as escaping mechanism
331349
- square brackets quoting for identifiers
@@ -347,32 +365,6 @@ PHP 8.4 UPGRADE NOTES
347365
modifier ("i"), the expression locks out mixing of ASCII and non-ASCII
348366
characters.
349367

350-
- PDO:
351-
. Added support for driver-specific subclasses.
352-
RFC: https://wiki.php.net/rfc/pdo_driver_specific_subclasses
353-
This RFC adds subclasses for PDO in order to better support
354-
database-specific functionalities. The new classes are
355-
instantiatable either via calling the PDO::connect() method
356-
or by invoking their constructor directly.
357-
358-
- PDO_DBLIB:
359-
. Added class Pdo\DbLib.
360-
361-
- PDO_FIREBIRD:
362-
. Added class Pdo\Firebird.
363-
364-
- PDO_MYSQL:
365-
. Added class Pdo\Mysql.
366-
367-
- PDO_ODBC:
368-
. Added class Pdo\Odbc.
369-
370-
- PDO_PGSQL:
371-
. Added class Pdo\Pgsql.
372-
373-
- PDO_SQLITE:
374-
. Added class Pdo\Sqlite.
375-
376368
- POSIX:
377369
. Added constant POSIX_SC_CHILD_MAX
378370
. Added constant POSIX_SC_CLK_TCK

0 commit comments

Comments
 (0)