Bde.DBTables.TDataSetUpdateObject.Apply

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Apply(UpdateKind: TUpdateKind); virtual; abstract;

C++

virtual void __fastcall Apply(Data::Db::TUpdateKind UpdateKind) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TDataSetUpdateObject

Description

Apply applies changes to the dataset specified by the DataSet property.

Descendants of TDataSetUpdateObject implement the Apply method. This method is intended to perform the updates specified by the update object. Descendants introduce properties to describe the details of the updates that should be performed. The UpdateKind parameter indicates whether the update object should modify existing records, insert new records, or delete existing records.

See Also