sharing Connection object and SQLExceptions

From: Steve Linabery <slinabery(at)worldcycling(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: sharing Connection object and SQLExceptions
Date: 2002-08-28 17:04:04
Message-ID: 1030554244.14826.17.camel@steve
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hi,

Another question from me today.

So I had some java (1.4) code that shared a Connection object to do a
transaction. There were no threading issues with the code in question;
it was a case where one object created another using a live Connection
in the second object's constructor. Then the first object made some
method calls to the second object during an SQL transaction
(db.setAutoCommitMode(false)).

One of the methods in the second object was throwing an SQLException.
It was trying to delete a table that did not exist.

After some debugging, it appeared that something in the Connection went
south after that error. Subsequently, if I created a Statement and
tried to query a table in the database (*not* the one that the program
had attempted to drop) I'd get another SQLException about the query
returned no rows.

Any thoughts on this one?

Thank you,
Steve Linabery

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Michael Paesold 2002-08-28 17:22:16 Re: sharing Connection object and SQLExceptions
Previous Message Steve Linabery 2002-08-28 16:35:47 Re: jdbc & tomcat