Here is an example MySQL database trigger
CREATE TRIGGER dbevent AFTER INSERT ON invoice
FOR EACH ROW
BEGIN
INSERT INTO dbeventtriggertable VALUES (new.accountnumber);
END;
This can be used in the Database Event activity (Develop > Events > Database)
Comments
0 comments
Article is closed for comments.