FireDAC.Comp.Script.TFDScriptOptions.IgnoreError
[–] Properties | |
---|---|
Type: property | |
Visibility: published | |
Source: FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp
| |
Unit: FireDAC.Comp.Script | |
Parent: TFDScriptOptions |
Delphi
property IgnoreError: Boolean read FIgnoreError write FIgnoreError default False;
C++
__property bool IgnoreError = {read=FIgnoreError, write=FIgnoreError, default=0};
Description
Controls the script engine action on the errors.
Set IgnoreError to True to stop the error message output to the console. When it is False the exception error message is output to the console. When BreakOnError is True, the script execution is terminated after the exception. The default value is False.
The property can be set from a script using the SET IGNORE (OFF | ON)
command.