Re: error handling - Mailing list pgsql-novice

From Oscar Rodriguez Fonseca
Subject Re: error handling
Date
Msg-id 20060427172808.5d4dbe9b@vrlap.localvrnet
Whole thread Raw
In response to Re: error handling  (Terry Lee Tucker <terry@esc1.com>)
List pgsql-novice
> --> I have a table with an UNIQUE constraint. Is it possible to have
> --> something like a trigger (or error handler) which is called every time
> --> a insert statement would break this constraint?  Or in some simple cases
> --> that this record is just dropped silently, without reporting an error?

> I believe that a UNIQUE constraint will stop the insert before any trigger
> ever fires. Maybe someone else knows for sure.

I do not know if there is an specific error handler built in postgresql (besides error-codes).

If you break the unique constraint an error will be thrown. A
workaround may be to launch a trigger BEFORE the insertion and do whatever is necessary within the trigger.

http://www.postgresql.org/docs/8.1/static/sql-createtrigger.html

--
Oscar

pgsql-novice by date:

Previous
From: Terry Lee Tucker
Date:
Subject: Re: error handling
Next
From: "Christian Hofmann"
Date:
Subject: Getting the indexes of a table