Action property sets actions when SQL script statements errors occur.
Syntax:
Action: TPSQLBatchAction;
Type
TPSQLBatchAction = (baFail, baAbort, baIgnore, baContinue);
Possible values:
baFail
Exception will be generated (default).
baAbort
Eabort exception will be called, script execution will be stopped, error message will be not displayed.
baIgnore
Error message will be not displayed, script execution will be continued from the next SQL statement.
baContinue
Error message will be displayed, script execution will be continued from the next SQL statement.
Description:
Action property sets actions when SQL script statements errors occur.