Invoke_event

SQL

procedure Invoke_event(IN event_name CHAR(31), IN param_str CLOB);


Parametry

event_name
event name
param_str
event parameters


Od verze

8.0a

Popis

This function invokes an event event_name with the param_str parameters. After a transaction is successfully completed, this event will affect all clients, that have this event registered and with the fulfilled requirements on the parameter values. If the transaction is recalled, the event won't be invoked.



Příklad

CALL Invoke_event('NEW_DATA', 'INVENTORY=123');

Viz