Data.DBJson.TJSONToDataSetBridge.ObjectView

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ObjectView: Boolean read FObjectView write FObjectView default False;

C++

__property bool ObjectView = {read=FObjectView, write=FObjectView, default=0};

Properties

Type Visibility Source Unit Parent
property public
Data.DBJson.pas
Data.DBJson.hpp
Data.DBJson TJSONToDataSetBridge

Description

Specifies the column definition mode.

When it is False, then JSON elements will be represented using flat field list.

When it is True, then JSON objects will be represented using ftADT, arrays - ftDataSet, and simple fields - using a type derived from field contents. This mode is more slow and may be not supported by some dataset classes.

The default value is False.

See Also