I am just practicing with the creation of TRIGGERs. Without surprise, failing...
I have 2 tables:
TABLE_A(ID INTEGER PK AUTOINCREMENT, NAME VARCHAR(20) NOT NULL)
TABLE_B(ID INTEGER PK AUTOINCREMENT, NAME VARCHAR(20) NOT NULL)
This is the SQL command I am using. I wrote it in the Tools->SQL... dialog box for a direct run.
CREATE TRIGGER TRIG_TRY AFTER INSERT ON TABLE_A FOR EACH STATEMENT INSERT INTO TABLE_B(NAME) VALUES('OK')
I could not figure out anything simpler about triggers.
This command is rejected with "unexpected token" at STATEMENT.
If I substitute STATEMENT with ROW, the command is then rejected with "unexpected end of command" at INSERT.
sadly this is all...

Thanks to everybody making OpenOffice a better thing!
Andrea