summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-09-27 23:11:56 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-09-29 11:20:41 +0200
commit9f5a77188c71bada8175dc48dd20847760bb7b10 (patch)
tree2afedcc7a1dce5b7b7c231525a980c9bffbb5b39 /UPGRADING
parent8d9da8df28e2eb878cf077afe5f5767d022bf4ad (diff)
downloadphp-git-9f5a77188c71bada8175dc48dd20847760bb7b10.tar.gz
Fix #22986: odbc_connect() may reuse persistent connection
`odbc_connect()` should not reuse persistent connections, since that prohibits multiple concurrent connections, which are occasionally desireable. We fix that by no longer looking for already cached connections when `odbc_connect()` is called, and instead creating a new connection instead. Closes GH-6223.
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING1
1 files changed, 1 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index e77c98d616..9fdfe5b6bb 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -394,6 +394,7 @@ PHP 8.0 UPGRADE NOTES
. oci_internal_debug() and its alias ociinternaldebug() have been removed.
- ODBC:
+ . odbc_connect() no longer reuses persistent connections.
. The unused flags parameter of odbc_exec() has been removed.
- OpenSSL: