Data.DB.TDataLink.UpdateData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UpdateData; virtual;

C++

virtual void __fastcall UpdateData();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.DB.pas
Data.DB.hpp
Data.DB TDataLink

Description

Provides an interface for writing edits to a record in the dataset.

The UpdateData method defined by TDataLink merely provides an interface for a method that writes updates to the current record in the dataset while avoiding calls to RecordChanged that posting the changes may trigger. Derived objects that do not need to write edits to the dataset can allow the inherited method to do nothing.

See Also