Есть ли другой способ проверить Firebird
действие триггера (insert
, update
, delete
), чем использование контекстной переменной INSERTING
, UPDATING
или DELETING
?
IF (INSERTING) THEN
BEGIN
/* do something */
END
EDITED: Sorry, I figured I have mixed my experience with other database and Firebird.
Thanks for all response for this question.