Firebird Documentation IndexFirebird 2.5 Language Ref. UpdatePSQL statements → BEGIN ... END blocks may be empty
Firebird Home Firebird Home Prev: PSQL statementsFirebird Documentation IndexUp: PSQL statementsNext: BREAK

BEGIN ... END blocks may be empty

Available in: PSQL

Changed in: 1.5

Description: BEGIN ... END blocks may be empty in Firebird 1.5 and up, allowing you to write stub code without having to resort to dummy statements.

Example: 

create trigger bi_atable for atable
active before insert position 0
as
begin
end
Prev: PSQL statementsFirebird Documentation IndexUp: PSQL statementsNext: BREAK
Firebird Documentation IndexFirebird 2.5 Language Ref. UpdatePSQL statements → BEGIN ... END blocks may be empty