Re: how to continue using a connection after an error with autocommit=false

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: how to continue using a connection after an error with autocommit=false
Дата
Msg-id 45DAD28A.2010907@enterprisedb.com
обсуждение исходный текст
Ответ на how to continue using a connection after an error with autocommit=false  ("James Im" <im-james@hotmail.com>)
Ответы Re: how to continue using a connection after an error with autocommit=false  (Tim Pizey <timp@melati.org>)
Список 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 по дате отправления:

Предыдущее
От: "James Im"
Дата:
Сообщение: invalid byte sequence for encoding "UTF8": 0x00
Следующее
От: Altaf Malik
Дата:
Сообщение: Re: how to continue using a connection after an error with autocommit=false