|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-21 11:29 UTC] kalowsky@php.net
[2011-01-01 21:03 UTC] jani@php.net
-Package: Feature/Change Request
+Package: ODBC related
[2017-01-08 06:24 UTC] krakjoe@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: krakjoe
[2017-01-08 06:24 UTC] krakjoe@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 11:00:01 2025 UTC |
Description: ------------ I really did want two different connections since I want to run a sub-query for every row retuned in the first query. If I try that with one connection I get, not unreasonably: "connection busy" Reproduce code: --------------- <? $dbconn = odbc_connect("DSNNAME","",""); $dbconn2 = odbc_connect("DSNNAME","",""); print_r($dbconn); print_r($dbconn2); ?> Expected result: ---------------- I expected the resouce ID's to be different Actual result: -------------- C:\php>cli\php filenote.php Resource id #5Resource id #5