Subject RE: [firebird-support] Events
Author Alan McDonald
> Hi,
> How flexible is a Firebird 1.5 event?
> Is it possible to fire an event off a specific field change within a
> table, e.g.
>
> A table contains:
>
> Name
> DepartmentId
>
> Is it possible to fire an event off when the DepartmentId changes?
>
> Regards
>
> --
> Richard
>

before update trigger
if new.departmentid<>old.department.id then post_event blabla


Alan