7 using System.Collections.Generic;
63 public const string TRUE =
"true";
64 public const string FALSE =
"false";
168 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
260 IDictionary<string, string>
options =
null)
289 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string USE_INDEXED_PARAMETERS
Uses $n style syntax when generating insert query for remote_table option.
long count_inserted
Number of records inserted into the target table.
string table_name
Name of the table from which the data will be exported to remote database, in [schema_name.
const string REMOTE_TABLE
Name of the target table to which source table is exported.
IDictionary< string, string > options
Optional parameters.
const string JDBC_CONNECTION_INIT_STATEMENT
Executes the statement once before doing actual load.
KineticaData - class to help with Avro Encoding for Kinetica
const string USE_ST_GEOMFROM_CASTS
Wraps parameterized variables with st_geomfromtext or st_geomfromwkb based on source column type.
const string JDBC_SESSION_INIT_STATEMENT
Executes the statement per each JDBC session before doing actual load.
IDictionary< string, string > info
Additional information.
long count_updated
[Not yet implemented] Number of records updated within the target table.
const string BATCH_SIZE
Batch size, which determines how many rows to export per round trip.
A set of string constants for the parameter options.
A set of results returned by Kinetica.exportRecordsToTable.
string table_name
Value of table_name.
ExportRecordsToTableRequest(string table_name, string remote_query=null, IDictionary< string, string > options=null)
Constructs an ExportRecordsToTableRequest object with the specified parameters.
A set of parameters for Kinetica.exportRecordsToTable.
string remote_query
Parameterized insert query to export gpudb table data into remote database.
long count_skipped
Number of records skipped.
const string DATASINK_NAME
Name of an existing external data sink to which table name specified in table_name will be exported.
ExportRecordsToTableRequest()
Constructs an ExportRecordsToTableRequest object with default parameters.