Re: pl/pgsql question

Поиск
Список
Период
Сортировка
От Ludwig Lim
Тема Re: pl/pgsql question
Дата
Msg-id 20021218042933.1012.qmail@web80310.mail.yahoo.com
обсуждение исходный текст
Ответ на pl/pgsql question  (Tim Perdue <tim@perdue.net>)
Ответы Re: pl/pgsql question  (Tim Perdue <tim@perdue.net>)
Список pgsql-sql
--- Tim Perdue <tim@perdue.net> wrote:
> I have created a function in pl/pgsql to modify a
> row before it gets put 
> into the database, but it seems my modification is
> being ignored, and 
> the unmodified row is being inserted.
> 
> I have confirmed with this RAISE EXCEPTION that my
> "NEW" row is modified 
> properly, however it is not being stored in the db.
> 
> NEW.start_date := NEW.start_date+delta;
> --      RAISE EXCEPTION ''new start date: %
> '',NEW.start_date;
> NEW.end_date := NEW.end_date+delta;
> 
> It's probably something very obvious, but I'm
> mystified.
> 
> CREATE TRIGGER projtask_insert_depend_trig AFTER
> INSERT ON project_task
>          FOR EACH ROW EXECUTE PROCEDURE
> projtask_insert_depend();
> 
> 
 Try changing the "AFTER" to "BEFORE"

CREATE TRIGGER projtask_insert_depend_trig BEFORE...

Changes made to the "NEW" will not be reflect in the
AFTER trigger since, the row is already inserted.

__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pl/pgsql question
Следующее
От: "Prashanth - Kamath"
Дата:
Сообщение: Postgres V/S Oracle