Re: JDBC behaviour

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: JDBC behaviour
Дата
Msg-id 21531.1455989498@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: JDBC behaviour  (Bill Moran <wmoran@potentialtech.com>)
Ответы Re: JDBC behaviour  (Sridhar N Bamandlapally <sridhar.bn1@gmail.com>)
Список pgsql-jdbc
Bill Moran <wmoran@potentialtech.com> writes:
> On Sat, 20 Feb 2016 16:29:09 +0000
> Vitalii Tymchyshyn <vit@tym.im> wrote:
>> Well, I suppose replacing simple copy with procedural per-row function
>> would give huge performance hit. Also what method do you propose to use in
>> the code? Savepoints?

> Not at all. PL/PGSQL's ON ERROR handling can manage this without needing
> savepoints.

Actually, plpgsql's exception blocks *are* savepoints under the hood.
The backend engine does not have any way of recovering from errors other
than a (sub)transaction abort, which means you can't do this without a
savepoint or equivalent.

            regards, tom lane


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Bill Moran
Дата:
Сообщение: Re: JDBC behaviour
Следующее
От: Vitalii Tymchyshyn
Дата:
Сообщение: Re: JDBC behaviour