summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-11-25 17:28:23 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-11-25 17:28:23 +0100
commit306555e11da4fb9f4759e809b6c1961f11dc6e8b (patch)
treeb0b3549b35c701589a4c72a4e71a12f226862a0a /UPGRADING
parent217f247bb52bc64274d156c481b1b55c0590d803 (diff)
downloadphp-git-306555e11da4fb9f4759e809b6c1961f11dc6e8b.tar.gz
Add UPGRADING note for PDO::inTransaction()
[ci skip]
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING6
1 files changed, 6 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index bf41814ee1..3ffcd8fd43 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -443,6 +443,12 @@ PHP 8.0 UPGRADE NOTES
string $statement, ?int $fetch_mode = null, ...$fetch_mode_args)
PDOStatement::setFetchMode(int $mode, ...$params)
+- PDO MySQL:
+ . PDO::inTransaction() now reports the actual transaction state of the
+ connection, rather than an approximation maintained by PDO. If a query that
+ is subject to "implicit commit" is executed, PDO::inTransaction() will
+ subsequently return false, as a transaction is no longer active.
+
- PDO_ODBC:
. The php.ini directive pdo_odbc.db2_instance_name has been removed