IBX.IBCustomDataSet.TIBCustomDataSet.OnUpdateRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnUpdateRecord: TIBUpdateRecordEvent read FOnUpdateRecord  write FOnUpdateRecord;

C++

__property TIBUpdateRecordEvent OnUpdateRecord = {read=FOnUpdateRecord, write=FOnUpdateRecord};

Properties

Type Visibility Source Unit Parent
event published
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBCustomDataSet

Description

Occurs when cached updates are applied to a record.

Write an OnUpdateRecord event handler to process updates that cannot be handled by a single update component, such as implementation of cascading updates, insertions, or deletions. This handler is also useful for applications that require additional control over parameter substitution in update components.

Note: The code in an OnUpdateRecord handler must not call any methods that make a different record the current one.