|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-02-16 04:45 UTC] kara
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 17 11:00:02 2025 UTC |
I can't reopen a connection again in the same page, even if the other connection was opened in anoter file and included with the statement "require". In the previous version () I could open a connection to an ODBC driver and close it several times in the same script. $conn = odbc_connect("","",""); odbc_close($conn); $conn = odbc_connect("","",""); // some intruction here will produce error like " Warning: Bad ODBC connection number (1) in C:\InetPub\wwwroot\NotaSpese\conferimenti\index.php on line 224" odbc_close($conn);