Skip to main content

◆ insertRecords() [1/4]

template<typename TRequest>
InsertRecordsResponse gpudb::GPUdb::insertRecords (const InsertRecordsRequest< TRequest > &request_) const
inline

Adds multiple records to the specified table.

The operation is synchronous, meaning that a response will not be returned until all the records are fully inserted and available. The response payload provides the counts of the number of records actually inserted and/or updated, and can provide the unique identifier of each added record.

The options parameter can be used to customize this function’s behavior.

The update_on_existing_pk option specifies the record collision policy for inserting into a table with a primary key, but is ignored if no primary key exists.

The return_record_ids option indicates that the database should return the unique identifiers of inserted records.

Template Parameters
TRequestThe type of object being added.
Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 36955 of file GPUdb.hpp.

◆ insertRecords() [2/4]

template<typename TRequest>
InsertRecordsResponse & gpudb::GPUdb::insertRecords (const InsertRecordsRequest< TRequest > &request_,
InsertRecordsResponse &response_ ) const
inline

Adds multiple records to the specified table.

The operation is synchronous, meaning that a response will not be returned until all the records are fully inserted and available. The response payload provides the counts of the number of records actually inserted and/or updated, and can provide the unique identifier of each added record.

The options parameter can be used to customize this function’s behavior.

The update_on_existing_pk option specifies the record collision policy for inserting into a table with a primary key, but is ignored if no primary key exists.

The return_record_ids option indicates that the database should return the unique identifiers of inserted records.

Template Parameters
TRequestThe type of object being added.
Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 36996 of file GPUdb.hpp.

◆ insertRecords() [3/4]

template<typename TRequest>
InsertRecordsResponse gpudb::GPUdb::insertRecords (const std::string &tableName,
const std::vector< TRequest > &data,
const std::map< std::string, std::string > &options ) const
inline

Adds multiple records to the specified table.

The operation is synchronous, meaning that a response will not be returned until all the records are fully inserted and available. The response payload provides the counts of the number of records actually inserted and/or updated, and can provide the unique identifier of each added record.

The options parameter can be used to customize this function’s behavior.

The update_on_existing_pk option specifies the record collision policy for inserting into a table with a primary key, but is ignored if no primary key exists.

The return_record_ids option indicates that the database should return the unique identifiers of inserted records.

Template Parameters
TRequestThe type of object being added.
Parameters
[in]tableNameName of table to which the records are to be added, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table.
[in]dataAn array of binary-encoded data for the records to be added. All records must be of the same type as that of the table. Empty array if listEncoding is json.
[in]optionsOptional parameters.The default value is an empty map.
Returns
Response object containing the result of the operation.

Definition at line 37296 of file GPUdb.hpp.

◆ insertRecords() [4/4]

template<typename TRequest>
InsertRecordsResponse & gpudb::GPUdb::insertRecords (const std::string &tableName,
const std::vector< TRequest > &data,
const std::map< std::string, std::string > &options,
InsertRecordsResponse &response_ ) const
inline

Adds multiple records to the specified table.

The operation is synchronous, meaning that a response will not be returned until all the records are fully inserted and available. The response payload provides the counts of the number of records actually inserted and/or updated, and can provide the unique identifier of each added record.

The options parameter can be used to customize this function’s behavior.

The update_on_existing_pk option specifies the record collision policy for inserting into a table with a primary key, but is ignored if no primary key exists.

The return_record_ids option indicates that the database should return the unique identifiers of inserted records.

Template Parameters
TRequestThe type of object being added.
Parameters
[in]tableNameName of table to which the records are to be added, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table.
[in]dataAn array of binary-encoded data for the records to be added. All records must be of the same type as that of the table. Empty array if listEncoding is json.
[in]optionsOptional parameters.The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 37600 of file GPUdb.hpp.