Subject Re: [Firebird-Java] Re: Registering Listeners using jaybird
Author Roman Rokytskyy
> But i can see only eventName and eventCount methods.
> Is there anyway to get the columnname from the events, meaning which
> column has changed?

No. This you can do only by using different event names.

> But i want to know, If i update CUSTOMER_NAME column in my java
> program is it possible for me to get the Updated column is
> CUSTOMER_NAME.

Only if you post different event names for different changes. Or you keep a
log table where you save what was changed. The question is whether you
really need to know such information...

So, the events mechanism is not something like "network trigger", you have
neither "new." nor "old." variables.

Roman