| TIB_ScriptStatementEvent Type |
Unit
IB_Script
Declaration
TIB_ScriptStatementEvent = procedure( Sender: TIB_Script;
var Statement: string;
var SkipIt: boolean ) of object;Description
This event allows a little bit of extra control over statements that the
script is executing.
It is possible to do your won custom processing and then set SkipIt to true so
that no action will be take with this statement and then next one in the script
will be processed.
It is also possible to alter the statement as well since it is passed by
reference.
SET TERM is supported as in an ISQL script too. Other ISQL SET commands are
simply ignored and no error will result by them being in the script.