Data.DBJson.TJSONToDataSetBridge.Append

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.DBJson.pas
Data.DBJson.hpp
Unit: Data.DBJson
Parent: TJSONToDataSetBridge

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 */;

Description

  • AIter: TJSONIterator - Appends new record to Dataset and populates its fields using JSON value of the current TJSONReader 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 using JSON value of the current JSONReader 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 using TJSONValue.

This method normally is used with JSON array. For each array item will be appended new Dataset record.

See Also