DSAzure.TAzureTableService.InsertEntity

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function InsertEntity(const TableName: String; entity: TJSONObject): string;

C++

System::UnicodeString __fastcall InsertEntity(const System::UnicodeString TableName, System::Json::TJSONObject* entity);

Properties

Type Visibility Source Unit Parent
function public
DSAzure.pas
DSAzure.hpp
DSAzure TAzureTableService

Description

Inserts a new row into a given table.

InsertEntity inserts a new row, formed as a TJSONObject, into an already existing table with the given name. For the format of the row object, refer to the Microsoft Azure Table API page in the See Also section.

See Also