Help ! Connection busy

2002-03-11 Thread Gurmeet

I am getting [Microsoft][ODBC SQL Server Driver]Connection is busy with
results for another h
stmt

How do I get rid of this?

Regards
Gurmeet


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Help ! Connection busy

2002-03-11 Thread August Detlefsen

You have to explicitly close your JDBC statements and connections when
you are done with them. Make sure you are using these for Statement and
Connection, respectively: 

stmt.close();
//and
conn.close();


--- Gurmeet [EMAIL PROTECTED] wrote:
 I am getting [Microsoft][ODBC SQL Server Driver]Connection is busy
 with
 results for another h
 stmt
 
 How do I get rid of this?
 
 Regards
 Gurmeet
 
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]
 


__
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]