Datasnap.DBClient.TCustomClientDataSet.Data
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: Datasnap.DBClient.pas Datasnap.DBClient.hpp
| |
Unit: Datasnap.DBClient | |
Parent: TCustomClientDataSet |
Delphi
property Data: OleVariant read GetData write SetData;
C++
__property System::OleVariant Data = {read=GetData, write=SetData};
Description
Represents the data of the client dataset in a transportable format.
Data represents the client dataset's local, in-memory copy of its data, encoded as a data packet. This is the data in the binary format used internally by the client dataset.
This data packet can originate from a provider, a file on disk, or the Data property of another client dataset.
Note: To obtain a copy of the client dataset's data as an XML data packet instead of in a binary format, use the XMLData property.
See Also