Data.DBJson.TJSONToDataSetBridge.Append

From RAD Studio API Documentation
Jump to: navigation, search

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 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