Re: how to continue using a connection after an error with autocommit=false - Mailing list pgsql-jdbc

From Heikki Linnakangas
Subject Re: how to continue using a connection after an error with autocommit=false
Date
Msg-id 45DAD28A.2010907@enterprisedb.com
Whole thread Raw
In response to how to continue using a connection after an error with autocommit=false  ("James Im" <im-james@hotmail.com>)
Responses Re: how to continue using a connection after an error with autocommit=false
List pgsql-jdbc
James Im wrote:
> I just find out that I cannot continue using a connection when I use
> autocommit=false and that an sql insert failed.

That's intended behavior in PostgreSQL. I just wrote this in another
thread last week:

If you have a statement in your transaction that you know might fail,
you can use savepoints to avoid having to restart the whole transaction:

Savepoint sp = conn.setSavepoint();
try {
    stmt.executeQuery("SELECT 1 FROM table_that_might_not_exist");
} catch(SQLException ex)
{
    sp.rollback(sp);
}
stmt.executeQuery("SELECT * FROM table_that_exists");
...

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-jdbc by date:

Previous
From: "James Im"
Date:
Subject: invalid byte sequence for encoding "UTF8": 0x00
Next
From: Altaf Malik
Date:
Subject: Re: how to continue using a connection after an error with autocommit=false