IBCustomDataSet.TIBUpdateAction
From RAD Studio VCL Reference
C++ Information
From IBCustomDataSet.hpp
enum TIBUpdateAction{ uaFail, uaAbort, uaSkip, uaRetry, uaApply, uaApplied };
Unit: IBCustomDataSet
Type: enum
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