Datasnap.DBClient.TCustomClientDataSet.Post

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Unit: Datasnap.DBClient
Parent: TCustomClientDataSet

Delphi

procedure Post; override;

C++

virtual void __fastcall Post();

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