Is there other way to check Firebird trigger action (insert
, update
, delete
) than using context variable INSERTING
, UPDATING
, or DELETING
?
IF (INSERTING) THEN
BEGIN
/* do something */
END
Other way is to have different triggers for thоse actions