FireDAC.Comp.Client.TFDCustomConnection.ApplyUpdates

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ApplyUpdates(const ADataSets: array of TFDDataSet);

C++

void __fastcall ApplyUpdates _DEPRECATED_ATTRIBUTE1("Use Centralized Cached Updates and TFDSchemaAdapter instead") (Firedac::Comp::Dataset::TFDDataSet* const *ADataSets, const int ADataSets_High);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomConnection

Description

Warning: ApplyUpdates is deprecated.

Applies change logs of the specified datasets to the DBMS.

Call ApplyUpdates to apply change logs of the specified active datasets to the database.

ApplyUpdates is only meaningful if the CachedUpdates property is True for the specified datasets. ADataSets is an open array of datasets. For each specified dataset this method calls the dataset’s ApplyUpdates and CommitUpdates methods to apply that dataset’s change log to the database.

See Also