ResultSet is closed  
Author Message
Mike B





PostPosted: 2004-11-25 6:58:00 Top

java-programmer, ResultSet is closed I was testing my program and the above appeared in the output. I have
searched all classes in this particular folder and I do not even have any of
that coded. Does Java issue messages like that? Is it an error? My code ran
ok, just the message appeared.

--
Mike B


 
Chris Smith





PostPosted: 2004-11-25 11:52:00 Top

java-programmer >> ResultSet is closed Mike B <email***@***.com> wrote:
> I was testing my program and the above appeared in the output. I have
> searched all classes in this particular folder and I do not even have any of
> that coded. Does Java issue messages like that? Is it an error? My code ran
> ok, just the message appeared.

It sounds like that was the message text -- e.getMessage() -- of an
exception during JDBC access. You probably print out the exception
message at some point.

--
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.

Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
 
Mike B





PostPosted: 2004-11-25 12:31:00 Top

java-programmer >> ResultSet is closed Chris Smith <email***@***.com> wrote:
> Mike B <email***@***.com> wrote:
>> I was testing my program and the above appeared in the output. I have
>> searched all classes in this particular folder and I do not even
>> have any of that coded. Does Java issue messages like that? Is it an
>> error? My code ran ok, just the message appeared.
>
> It sounds like that was the message text -- e.getMessage() -- of an
> exception during JDBC access. You probably print out the exception
> message at some point.

Aha! that could be it. I have some supplied classses that do ODBC access.
Perhaps one of them printed out an error message. Thanks.

--
Mike B