GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::exportRecordsToTable. More...
#include <gpudb/protocol/export_records_to_table.h>
Public Member Functions | |
ExportRecordsToTableRequest () | |
Constructs an ExportRecordsToTableRequest object with default parameters. More... | |
ExportRecordsToTableRequest (const std::string &tableName_, const std::string &remoteQuery_, const std::map< std::string, std::string > &options_) | |
Constructs an ExportRecordsToTableRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
Name of the table from which the data will be exported to remote database, in [ schema_name. ]table_name format, using standard name resolution rules. More... | |
std::string | remoteQuery |
Parameterized insert query to export gpudb table data into remote database. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::exportRecordsToTable.
Exports records from source table to the specified target table in an external database
Definition at line 19 of file export_records_to_table.h.
|
inline |
Constructs an ExportRecordsToTableRequest object with default parameters.
Definition at line 25 of file export_records_to_table.h.
|
inline |
Constructs an ExportRecordsToTableRequest object with the specified parameters.
[in] | tableName_ | Name of the table from which the data will be exported to remote database, in [schema_name.]table_name format, using standard name resolution rules. |
[in] | remoteQuery_ | Parameterized insert query to export gpudb table data into remote database. The default value is ''. |
[in] | options_ | Optional parameters.
|
Definition at line 116 of file export_records_to_table.h.
std::map<std::string, std::string> gpudb::ExportRecordsToTableRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 194 of file export_records_to_table.h.
std::string gpudb::ExportRecordsToTableRequest::remoteQuery |
Parameterized insert query to export gpudb table data into remote database.
The default value is ''.
Definition at line 135 of file export_records_to_table.h.
std::string gpudb::ExportRecordsToTableRequest::tableName |
Name of the table from which the data will be exported to remote database, in [ schema_name. ]table_name format, using standard name resolution rules.
Definition at line 129 of file export_records_to_table.h.