| From: | Ludwig Lim <lud_nowhere_man(at)yahoo(dot)com> |
|---|---|
| To: | Tim Perdue <tim(at)perdue(dot)net> |
| Cc: | PostgreSQL Mailing List <pgsql-sql(at)postgresql(dot)org> |
| Subject: | Re: pl/pgsql question |
| Date: | 2002-12-18 04:29:33 |
| Message-ID: | 20021218042933.1012.qmail@web80310.mail.yahoo.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
--- Tim Perdue <tim(at)perdue(dot)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
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Prashanth - Kamath | 2002-12-18 04:50:07 | Postgres V/S Oracle |
| Previous Message | Tom Lane | 2002-12-18 04:26:18 | Re: pl/pgsql question |