FireDAC.Comp.Script.TFDScript.Status
Delphi
property Status: TFDScriptStatus read FStatus;
C++
__property TFDScriptStatus Status = {read=FStatus, nodefault};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | public | FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp |
FireDAC.Comp.Script | TFDScript |
Description
Returns the current status of the script engine.
Read the Status property to get the current status of the SQL script engine.
| Status | Description |
|---|---|
|
ssInactive |
The engine is inactive and is not running yet. |
|
ssValidating |
The engine is validating the script after calling the ValidateAll or ValidateStep methods. |
|
ssRunning |
The engine is executing the script after calling the ExecuteAll or ExecuteStep methods. |
|
ssFinishWithErrors |
The engine has finished the run with errors. |
|
ssFinishSuccess |
The engine has finished the run without errors. |
|
ssAborted |
The engine run has aborted. |
An application can also check the Finished property to see when the engine has finished.