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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Wed Apr 24 07:01:29 2024 UTC