Search code examples
sqltriggersfirebird

Other way to check trigger action on Firebird RDBMS


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

Solution

  • Other way is to have different triggers for thоse actions