From 9f5a77188c71bada8175dc48dd20847760bb7b10 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sun, 27 Sep 2020 23:11:56 +0200 Subject: 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. --- UPGRADING | 1 + 1 file changed, 1 insertion(+) (limited to 'UPGRADING') 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: -- cgit v1.2.1