Re: Catching errors inside a function

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Catching errors inside a function
Дата
Msg-id Pine.LNX.4.33L2.0109031545050.31230-100000@aguila.protecne.cl
обсуждение исходный текст
Ответ на Catching errors inside a function  (Francesco Casadei <f_casadei@libero.it>)
Ответы Re: Catching errors inside a function
Список pgsql-general
On Mon, 3 Sep 2001, Francesco Casadei wrote:

> I want to execute an INSERT query that may fail due to a primary key constraint
> check. The primary key is on a field whose value is generated randomly by
> another C function.

Wouldn't it be easier if you just used a sequence to generate the
primary key, if you just want uniqueness?

> Is it possible to wrap the insert into a function that checks for failures and
> retry the insert until success? Something like this:
>
> function blah
> {
>    do {
>         cod = generate code;
>       execute insert with cod as primary key;
>    } while (! errors);
> }

Any error will abort the transaction. You can't avoid this. Perhaps you
can try inserting the value outside the transaction, and then open it to
do whatever you want with the value inserted.

> Is there a way to disable this behaviour?

No.

--
Alvaro Herrera (<alvherre[@]atentus.com>)


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

Предыдущее
От: "Alex Knight"
Дата:
Сообщение: Re: PL/java?
Следующее
От: merlyn@stonehenge.com (Randal L. Schwartz)
Дата:
Сообщение: Re: [WAY OT] Re: PL/java?