DAC for MySQL
TMySQLBatchExecute.Properties.Action | Previous Next |
Action property sets actions when SQL script statements errors occur.
Syntax:
Action: TMySQLBatchAction;
Type
TMySQLBatchAction = (baFail, baAbort, baIgnore, baContinue);
Description:
Action property sets actions when SQL script statements errors occur.
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.