From: | Carlos Alberto Márquez Rey <carlos_marquez_rey(at)yahoo(dot)com> |
---|---|
To: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Trigger no funciona, una ayuda por favor |
Date: | 2007-01-12 17:45:32 |
Message-ID: | 219371.92749.qm@web50809.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Hola
Gracias por las respuestas, voy a probar
pero me quedo con la siguiente duda, si deseo ademas de
hacer NEW.fec_ult_act = now();
hacer tambien NEW.campox = 'S';
igual tengo que hacer return NEW
respecto a si se va a ejecutar cuanfo haga delete, el trigger todavia esta en desarrollo, pero por el momento voy a hacer caso y voy a quitar el DELETE
gracias de nuevo
Jaime Casanova <systemguards(at)gmail(dot)com> escribió: On 1/11/07, Alvaro Herrera wrote:
> Carlos Alberto Márquez Rey escribió:
> > Tengo el siguiente trigger y funcion trigger
> >
> >
> > CREATE OR REPLACE FUNCTION tru_rel_nombres_elementos()
> > RETURNS "trigger" AS
> > $BODY$
> > begin
> > if TG_OP = 'INSERT' or TG_OP = 'UPDATE' then
> > NEW.fec_ult_act = now();
> > end if;
> > if TG_OP = 'DELETE' then
> > end if;
> > return null;
> > end;
> > $BODY$
> > LANGUAGE 'plpgsql' VOLATILE;
> > ALTER FUNCTION tru_rel_nombres_elementos() OWNER TO postgres;
>
> cambia el return null por "RETURN NEW"
>
> >
> > CREATE TRIGGER tru_rel_nombres_elementos
> > AFTER INSERT OR UPDATE OR DELETE
> > ON rel_nombres_elementos
> > FOR EACH ROW
> > EXECUTE PROCEDURE tru_rel_nombres_elementos();
>
> Cambia "AFTER INSERT" por "BEFORE INSERT".
>
> Con eso deberia funcionar
>
Aunque ya alavaro te respondio...
para que la pregunta por DELETE? quita lo referente a DELETE tanto en
la funcion como en el trigger... esto no tiene nada que ver con tu
error pero vas a ejecutar el trigger cada vez que hagas un delete solo
para no hacer nada :(
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
---------------------------(fin del mensaje)---------------------------
TIP 3: si publicas/lees desde Usenet, por favor envía "subscribe-nomail"
a majordomo(at)postgresql(dot)org para que tus mensajes puedan llegar
a los suscriptores de la lista
***********************************************************
Carlos Márquez
***********************************************************
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
Regístrate ya - http://correo.espanol.yahoo.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Espartano | 2007-01-12 18:32:57 | Re: odbc para Postgresql |
Previous Message | Milton Galo Patricio | 2007-01-12 15:51:17 | Re: [funciones, bloques y exception] las consultas serán ignoradas hasta el final del bloque |