Re: Custom Constraint Violation Errors

Поиск
Список
Период
Сортировка
От Richard Broersma
Тема Re: Custom Constraint Violation Errors
Дата
Msg-id CABvLTWFCKy2_YRCS17+mQCz7CDkAikheeDYesfOk5KDDvnsfJA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Custom Constraint Violation Errors  (Michael Musenbrock <redeamer@gmx.net>)
Ответы Re: Custom Constraint Violation Errors  (Craig Ringer <ringerc@ringerc.id.au>)
Список pgsql-general
On Mon, Nov 7, 2011 at 2:47 PM, Michael Musenbrock <redeamer@gmx.net> wrote:

> was intentionally looking for a trigger firing on violating of an
> already existing constraint.
>
> So am I got that right, that If I want to have eg custom error messages
> for a foreign
> key violation, I need to replace all fkeys by trigger functions?!

I see.  The short answer is, while it is possible to custom make your
own constraint triggers that emulate foreign keys, don't do it.  This
would be a maintenance nightmare.

I'd be more maintainable to catch these errors in your client
application.  Here you would reword these error messages according the
business rules of your client application.

If you insist that the server rewrite your error messages, then you'll
need to create stored functions that will preform the desired
operations; catch any possible errors; and then throw the altered
error messages.  But remember that catching errors and throwing them
will have a performance penalty.

http://www.postgresql.org/docs/9.1/interactive/plpgsql-control-structures.html#PLPGSQL-ERROR-TRAPPING

--
Regards,
Richard Broersma Jr.

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

Предыдущее
От: John R Pierce
Дата:
Сообщение: Re: Simple question on SELECT
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: function within a function/rollbacks/exception handling