Datasnap.DBClient.TCustomClientDataSet.Post

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Post; override;

C++

virtual void __fastcall Post();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TCustomClientDataSet

Description

Writes a modified record to the Data property or the change log.

Call Post to commit changes to the current record. Methods that change the dataset state, such as Edit, Insert, or Append, or that move from one record to another, such as First, Last, Next, and Prior automatically call Post.

Note: If the LogChanges property is True, Post updates the change log specified by the Delta property. If LogChanges is False, Post writes the changes directly to the Data property.

See Also

Code Examples