Sathyajith G wrote:
> ResultSet rs=Data.getResultSet(qry);
> I changed the driver to postgres 8.0.1. Strangely now, the above code gives
> the exception "The resultset is closed". Please help.
Perhapse Data.getResultSet() closes the Statement used to execute the
query before returning -- closing the Statement also closes the ResultSet.
It's hard to diagnose further without seeing all the code that's running.
-O