Data.DBJson.TJSONToDataSetBridge.Append
Delphi
procedure Append(AIter: TJSONIterator); overload;
procedure Append(AReader: TJSONReader); overload;
procedure Append(AValue: TJSONValue); overload;
C++
void __fastcall Append(System::Json::Builders::TJSONIterator* AIter)/* overload */;
void __fastcall Append(System::Json::Readers::TJsonReader* AReader)/* overload */;
void __fastcall Append(System::Json::TJSONValue* AValue)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Data.DBJson.pas Data.DBJson.hpp |
Data.DBJson | TJSONToDataSetBridge |
Description
AIter: TJSONIterator
- Appends new record to Dataset and populates its fields usingJSON
value of the currentTJSONReader
level.
This method normally is used with JSON
array. For each array item will be appended new Dataset record.
AReader: TJSONReader
- Appends new record to Dataset and populates its fields usingJSON
value of the currentJSONReader
level.
This method normally is used with JSON
array. For each array item will be appended new Dataset record.
AValue: TJSONValue
- Appends new record to Dataset and populates its fields usingTJSONValue
.
This method normally is used with JSON
array. For each array item will be appended new Dataset record.