Bde.DBTables.TBDEDataSet.OnUpdateRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnUpdateRecord: TUpdateRecordEvent read FOnUpdateRecord write FOnUpdateRecord;

C++

__property Data::Db::TUpdateRecordEvent OnUpdateRecord = {read=FOnUpdateRecord, write=FOnUpdateRecord};

Properties

Type Visibility Source Unit Parent
event published
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TBDEDataSet

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.

OnUpdateRecord is an event handler of type Data.DB.TUpdateRecordEvent.

See Also