FireDAC.Comp.Script.TFDScriptOptions.BreakOnError

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BreakOnError: Boolean read FBreakOnError write FBreakOnError default False;

C++

__property bool BreakOnError = {read=FBreakOnError, write=FBreakOnError, default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
FireDAC.Comp.Script TFDScriptOptions

Description

Controls the action that a script engine should perform if an error has happened.

Set the BreakOnError property to True to stop the script execution on first error. The default value is False. The property has effect only when IgnoreError is False

The property can be set from a script using the SET BREAK ON|OFF command.

See Also