Datasnap.DBClient.TCustomClientDataSet.CloneSource

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CloneSource: TCustomClientDataSet read FCloneSource;

C++

__property TCustomClientDataSet* CloneSource = {read=FCloneSource};

Properties

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

Description

Indicates the client dataset (if any) with which this client dataset shares data.

Read CloneSource to access another client dataset that shares its data cursor with this one. CloneSource is set by the CloneCursor method when the datasets are linked.

If the client dataset has not called CloneCursor to share the data cursor of another client dataset, CloneSource is nil (Delphi) or NULL (C++).

See Also