Data.Cloud.AmazonAPI.TAmazonTableService.InsertRows
| [–] Properties | |
|---|---|
| Type: function | |
| Visibility: public | |
| Source: Data.Cloud.AmazonAPI.pas Data.Cloud.AmazonAPI.hpp
| |
| Unit: Data.Cloud.AmazonAPI | |
| Parent: TAmazonTableService | |
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));
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 |
|---|---|
|
|
The name of the table to insert the rows into. |
|
|
The rows to batch insert or update. |
|
|
The optional class for storing response info into. |