On Wednesday 24 March 2004 15:27, Miljan Jeremić wrote: > Dear Sir's, > I have one problem with type trigger in example: > > CREATE FUNCTION emp_stamp() RETURNS trigger AS ' > .... > How to create type triger for this function? > How create type for function that returned primary key, in pd AdminII > function is check_primary_key(). > You don't need to create any type for trigger procedures. From inside of trigger procedure You can acces two rows(tuples): NEW and OLD, and Your trigger function must RETURN NEW if you want to allow data changes, or OLD if You want to discard changes. Also, this is more [EMAIL PROTECTED] kind of question...
See: http://www.postgresql.org/docs/7.4/interactive/plpgsql-trigger.html Regards ! (Pozdrav !) ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster