Data.Cloud.AmazonAPI.TAmazonTableService.InsertRows

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function InsertRows(const TableName: string; Rows: TList<TAmazonBatchRow>;
ResponseInfo: TCloudResponseInfo = nil): Boolean;

C++

bool __fastcall InsertRows(const System::UnicodeString TableName, System::Generics::Collections::TList__1<TAmazonBatchRow>* Rows, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonTableService

Description

Does a batch insert of the given rows into the specified table.

Use InsertRows to do a batch insert of the given rows into the specified table.

Conditionals can only be used with single-values attributes.

The method returns True if the insertion is successful, and False otherwise.

The following table shows the significance of the parameters:

Parameter Description

TableName

The name of the table to insert the rows into.

Rows

The rows to batch insert or update.

ResponseInfo

The optional class for storing response info into.

See Also