Re: triggers

Поиск
Список
Период
Сортировка
От Eric B.Ridge
Тема Re: triggers
Дата
Msg-id 385A5C3A-4906-11D7-ADA1-0003937E3354@tcdi.com
обсуждение исходный текст
Ответ на triggers  (Dennis Gearon <gearond@cvc.net>)
Ответы Re: triggers
Список pgsql-general
On Tuesday, February 25, 2003, at 03:17  PM, Dennis Gearon wrote:

> are 'before' triggers or 'after' triggers more common?

it depends on what you want to do.  In many situations you'll need both.

>
> Why?

Before triggers are most useful when you need to change the value of a
column *before* it is updated/inserted (using the NEW table).  Or if
you want to completely deny the operation (by RETURNing NULL from the
trigger function).

After triggers are useful when you need to modify table B based on the
fact that something successfully happened in table A.  You can
guarantee that the after triggers only happen if the before trigger and
the actual action successfully completed.

>
> What's the benefits, problems with each?
>
> Can a function in a trigger lock a table? Or is it just sessions that
> can lock a  table?

Yes, they can lock tables.

eric


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

Предыдущее
От: Justin Clift
Дата:
Сообщение: Re: error compiling 7.3.2 on solaris 8- library conflict
Следующее
От: Christopher Browne
Дата:
Сообщение: Re: Can postgresql be run in memory (like a memory resident program)