RAD Studio VCL Reference
|
TIBUpdateAction indicates the action that a dataset should take after an event handler has responded to an update error.
TIBUpdateAction = ( uaFail, uaAbort, uaSkip, uaRetry, uaApply, uaApplied );
enum TIBUpdateAction { uaFail, uaAbort, uaSkip, uaRetry, uaApply, uaApplied };
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
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|