Is it possible to use arguments with firebird events : POST_EVENT 'event_name' + string args?
问题 I've a trigger that detects a change on a field PHONE_EXT and POSTs an EVENT. I would like to post the Phone_ID with the event in order to use this ID in the client. Is this possible? How? CREATE TRIGGER tr2 FOR employee ACTIVE AFTER UPDATE POSITION 0 AS BEGIN IF (new.PHONE_EXT <> old.PHONE_EXT) THEN POST_EVENT 'phone_ext_changed'; <-- I would like to pass a string parameter with record ID END 回答1: AFAIK, you cannot pass parameters, but you can get what you want with one of this ideas: If in