Re: Catching errors inside a function - Mailing list pgsql-general

From Alvaro Herrera
Subject Re: Catching errors inside a function
Date
Msg-id Pine.LNX.4.33L2.0109031545050.31230-100000@aguila.protecne.cl
Whole thread Raw
In response to Catching errors inside a function  (Francesco Casadei <f_casadei@libero.it>)
Responses Re: Catching errors inside a function
List 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 by date:

Previous
From: "Alex Knight"
Date:
Subject: Re: PL/java?
Next
From: merlyn@stonehenge.com (Randal L. Schwartz)
Date:
Subject: Re: [WAY OT] Re: PL/java?