meta data for this page
  •  

BEGIN ... 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