FireDAC.Comp.Client.TFDCustomMemTable.XMLData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property XMLData: string read GetXMLData write SetXMLData;

C++

__property System::UnicodeString XMLData = {read=GetXMLData, write=SetXMLData};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomMemTable

Description

Represents the dataset content as an XML.

The XMLData property allows you to exchange data between the dataset and external systems. The property is a shortcut for the LoadFromStream / SaveToStream methods.  The data is represented as an Unicode string, containing XML encoded data. Read the property to get the data. Set the property to populate dataset structure and fill in by rows. After setting the property the dataset will remain open. 

The property is for the TClientDataSet compatibility.

See Also