| Author |
Resultset is closed
|
jayram
Ranch Hand
Joined: Oct 30, 2000
Posts: 94
|
|
hello I am having a problem while using JDBC I have a servlet which uses a DBConnection class The servlet calls getResultSet(String qryString) method if DBConnection class. The getResultSet returns a reference to the resultset. Inside DBConnection class i do normal jdbc stuff like create a connection,statment executer a query and return the resultset. Now when i try to do anything with this resultset in my servlet i get a SQLException "resultset is already closed". The resultset object is still there Please help me on this problem TIA Cheers Jayram
|
 |
Ravee Bhat
Ranch Hand
Joined: Nov 26, 1999
Posts: 72
|
|
Hi You must be cloing the Database connection somewhere.Do check where are you doing this. Though you have a ref to the DBConnection class (you custom connection class) check if you have closed the connection with the database. ------------------ thanks and regards ravee.
|
 |
 |
|
|
subject: Resultset is closed
|
|
|