Kinetica C# API
Version 6.0.1.0
|
Optional parameters. More...
Public Attributes | |
const string | UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Specifies the record collision policy for inserting into a table with a primary key. More... | |
const string | TRUE = "true" |
const string | FALSE = "false" |
const string | RETURN_RECORD_IDS = "return_record_ids" |
If true then return the internal record id along for each inserted record. More... | |
const string | ROUTE_TO_ADDRESS = "route_to_address" |
Route to a specific rank/tom. More... | |
Optional parameters.
A set of string constants for the parameter <member name="options">.
Definition at line 81 of file InsertRecords.cs.
const string kinetica.RawInsertRecordsRequest.Options.FALSE = "false" |
Definition at line 98 of file InsertRecords.cs.
const string kinetica.RawInsertRecordsRequest.Options.RETURN_RECORD_IDS = "return_record_ids" |
If true then return the internal record id along for each inserted record.
Values: true, false.
Definition at line 103 of file InsertRecords.cs.
const string kinetica.RawInsertRecordsRequest.Options.ROUTE_TO_ADDRESS = "route_to_address" |
Route to a specific rank/tom.
Option not suitable for tables using primary/shard keys
Definition at line 107 of file InsertRecords.cs.
const string kinetica.RawInsertRecordsRequest.Options.TRUE = "true" |
Definition at line 97 of file InsertRecords.cs.
const string kinetica.RawInsertRecordsRequest.Options.UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Specifies the record collision policy for inserting into a table with a primary key.
If set to true, any existing table record with primary key values that match those of a record being inserted will be replaced by that new record. If set to false, any existing table record with primary key values that match those of a record being inserted will remain unchanged and the new record discarded. If the specified table does not have a primary key, then this option is ignored. Values: true, false.
Definition at line 96 of file InsertRecords.cs.