Bde.DBTables.TDataSetUpdateObject.Apply

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TDataSetUpdateObject

Delphi

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

C++

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

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