From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | Nicolás Domínguez Florit <ndomin(at)rec(dot)unicen(dot)edu(dot)ar> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Recuperar Statement en un Trigger |
Date: | 2006-04-28 00:15:42 |
Message-ID: | c2d9e70e0604271715k63f8f0b6n653e84677e00c6ef@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 4/27/06, Nicolás Domínguez Florit <ndomin(at)rec(dot)unicen(dot)edu(dot)ar> wrote:
>
> Queria saber si hay alguna forma de recuperar la sentencia que disparo un
> trigger.
>
> Ejemplo:
> DELETE FROM PRUEBA WHERE codigo < 100;
>
> A raiz de esto se ejecuta un trigger que tiene asociado la tabla prueba.
> El trigger llama a un procedimeinto.
> Y dentro de dicho procedimeinto me interesa almacenar el DELETE FROM PRUEBA
> .......
>
> muchas gracias.
> Nicolas Dominguez
http://www.postgresql.org/docs/8.1/static/plpgsql-trigger.html
con PG_OP puedes saber si fue un INSERT, UPDATE o DELETE
con PG_RELNAME puedes saber que tabla es
pero la sentencia exacta no la puedes obtener
--
Atentamente,
Jaime Casanova
"What they (MySQL) lose in usability, they gain back in benchmarks, and that's
all that matters: getting the wrong answer really fast."
Randal L. Schwartz
From | Date | Subject | |
---|---|---|---|
Next Message | Juan Martínez | 2006-04-28 00:39:14 | Re: Algo frustrante!->win2k..? |
Previous Message | Jaime Casanova | 2006-04-28 00:09:17 | Re: Algo frustrante!->win2k..? |