FireDAC.Stan.Intf.TFDErrorAction
Delphi
TFDErrorAction = (eaFail, eaSkip, eaRetry, eaApplied, eaDefault,
eaExitSuccess, eaExitFailure);
C++
enum DECLSPEC_DENUM TFDErrorAction : unsigned int { eaFail, eaSkip, eaRetry, eaApplied, eaDefault, eaExitSuccess, eaExitFailure };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FireDAC.Stan.Intf.pas FireDAC.Stan.Intf.hpp |
FireDAC.Stan.Intf | FireDAC.Stan.Intf |
Description
Specifies processing error actions.
TFDErrorAction specifies processing error actions for a list of items.
| Name | Description |
|---|---|
| eaFail | Item processing failed, go to next item. |
| eaSkip | Skip item processing, go to next item. |
| eaRetry | Retry current item processing. |
| eaApplied | Item processed successfully, go to next item. |
| eaDefault | Take default action. |
| eaExitSuccess | Stop processing, mark processing as successful. |
| eaExitFailure | Stop processing, mark processing as failed. |