IBX.IBCustomDataSet.TIBUpdateAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIBUpdateAction = (uaFail, uaAbort, uaSkip, uaRetry, uaApply, uaApplied);

C++

enum DECLSPEC_DENUM TIBUpdateAction : unsigned char { uaFail, uaAbort, uaSkip, uaRetry, uaApply, uaApplied };

Properties

Type Visibility Source Unit Parent
enum public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet IBX.IBCustomDataSet

Description

TIBUpdateAction indicates the action that a dataset should take after an event handler has responded to an update error.


TIBUpdateAction values are:

Value Meaning

uaFail

Abort the update operation and display an error message.

uaAbort

Abort the update operation without displaying an error message.

uaSkip

Skip updating the record that raised the error condition, and leave the unapplied changes in the cache.

uaRetry

Repeat the update operation that originally raised the error condition.

uaApplied

The event handler applied the update (not used in error handling event handlers). Free the current record update from the cache.

uaApply

For internal use only.