Re: Triggers invoking a stored procedure or a C function - Mailing list pgsql-general

From Roman Neuhauser
Subject Re: Triggers invoking a stored procedure or a C function
Date
Msg-id 20060816215925.GF1172@dagan.sigpipe.cz
Whole thread Raw
In response to Triggers invoking a stored procedure or a C function  ("Harpreet Dhaliwal" <harpreet.dhaliwal01@gmail.com>)
List pgsql-general
# harpreet.dhaliwal01@gmail.com / 2006-08-16 11:55:39 -0400:
> Hi,
> Conventionally a trigger would fire a few sql queries on a particular event
> and we have standard code for that.
>
> My requirement is to start a stored procedure or a C function as a trigger
> action.
>
> Is this possible?

    Besides the fact that PostgreSQL doesn't have stored procedures,
    only "SQL-invoked routines", both SQL and external, you can.
    After all,
    http://www.postgresql.org/docs/8.1/static/sql-createtrigger.html
    says

    CREATE TRIGGER name { BEFORE | AFTER } { event [ OR ... ] }
    ON table [ FOR [ EACH ] { ROW | STATEMENT } ]
    EXECUTE PROCEDURE funcname ( arguments )

    The above page also links to "33.4. A Complete Example"
    (http://www.postgresql.org/docs/8.1/static/trigger-example.html),
    which revolves around a trigger function written in C.

--
How many Vietnam vets does it take to screw in a light bulb?
You don't know, man.  You don't KNOW.
Cause you weren't THERE.             http://bash.org/?255991

pgsql-general by date:

Previous
From: Berend Tober
Date:
Subject: Re: Best approach for a "gap-less" sequence
Next
From: "Jasbinder Bali"
Date:
Subject: Re: [NOVICE] DB insert Error