Re: Question regarding triggers

Поиск
Список
Период
Сортировка
От achill@matrix.gatewaynet.com
Тема Re: Question regarding triggers
Дата
Msg-id Pine.LNX.4.44.0310201622140.29584-100000@matrix.gatewaynet.com
обсуждение исходный текст
Ответ на Question regarding triggers  (Dmitri Fuerle <ffo2lp@yahoo.com>)
Ответы Re: Question regarding triggers  ("A.Bhuvaneswaran" <bhuvan@symonds.net>)
Список pgsql-sql
Why dont you try to write your trigger in C?

On Mon, 20 Oct 2003, Dmitri Fuerle wrote:

>  
>    I'm writing a trigger but running into problems.  My problem is that I can not determine anyway to tell what
fieldsare in the *new* record.  Without knowing what fields are there I get runtime errors if that's not what is being
updatedexample:
 
>  
> CREATE FUNCTION "public"."check_shipment" () RETURNS trigger AS'
> begin
>     If new.shipment_type_id = 4 then
>         --do something
>     end if;
>     return new;
> end;
>  
> in the above example everything works if shipment_type_id is being updated.  If it is not I will receive a run-time
errorbecause shipment_type_id is not part of the record new.
 
>  
> Please help,
> Dmitri
>  
> 
> 
> 
> ---------------------------------
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search

-- 
-Achilleus



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

Предыдущее
От: Dmitri Fuerle
Дата:
Сообщение: Question regarding triggers
Следующее
От: "A.Bhuvaneswaran"
Дата:
Сообщение: Re: Question regarding triggers