php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #937 Connection is busy with results for another hstmt
Submitted: 1998-11-21 10:50 UTC Modified: 1999-02-16 04:50 UTC
From: jborges at utad dot pt Assigned:
Status: Closed Package: ODBC related
PHP Version: 3.0.5 OS: Windows NT
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jborges at utad dot pt
New email:
PHP Version: OS:

 

 [1998-11-21 10:50 UTC] jborges at utad dot pt
<?
$conn_id = odbc_connect( dsn, login, pwd);
$result_id = odbc_exec($conn_id, "stored_procedure");
$conn_idcae = odbc_connect( dsn, login, pwd);
$result_idcae = odbc_exec($conn_idcae, "stored_procedure");
?> 

I use SQL Server 6.5

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-02-16 04:50 UTC] kara
You will have at least to free the first result before 
executing the procedure again. Maybe this was related
with the bug opening a connection twice?
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 18:01:29 2024 UTC