Data.DBJson.TJSONToDataSetBridge.TypesMode
Delphi
property TypesMode: TJSONTypesMode read FTypesMode write FTypesMode default TJSONTypesMode.Rich;
C++
__property TJSONTypesMode TypesMode = {read=FTypesMode, write=FTypesMode, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Data.DBJson.pas Data.DBJson.hpp |
Data.DBJson | TJSONToDataSetBridge |
Description
Specifies the field type definition mode.
The modes are:
TJSONTypesMode.Rich
- The adapter will try to derive the field type from theJSON
content.TJSONTypesMode.JSONOnly
- The adapter will use onlyJSON
value types.TJSONTypesMode.StringOnly
- All fields will be represented byftWideString
.
The default value is TJSONTypesMode.Rich
.