Kinetica C# API
Version 7.2.3.0
|
A set of string constants for the parameter options. 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 | IGNORE_EXISTING_PK = "ignore_existing_pk" |
Specifies the record collision error-suppression policy for inserting into a table with a primary key, only used when not in upsert mode (upsert mode is disabled when UPDATE_ON_EXISTING_PK is FALSE). More... | |
const string | RETURN_RECORD_IDS = "return_record_ids" |
If TRUE then return the internal record id along for each inserted record. More... | |
const string | TRUNCATE_STRINGS = "truncate_strings" |
If set to TRUE, any strings which are too long for their target charN string columns will be truncated to fit. More... | |
const string | RETURN_INDIVIDUAL_ERRORS = "return_individual_errors" |
If set to TRUE, success will always be returned, and any errors found will be included in the info map. More... | |
const string | ALLOW_PARTIAL_BATCH = "allow_partial_batch" |
If set to TRUE, all correct records will be inserted and incorrect records will be rejected and reported. More... | |
const string | DRY_RUN = "dry_run" |
If set to TRUE, no data will be saved and any errors will be returned. More... | |
A set of string constants for the parameter options.
Optional parameters.
Definition at line 873 of file InsertRecords.cs.
const string kinetica.InsertRecordsRequest< T >.Options.ALLOW_PARTIAL_BATCH = "allow_partial_batch" |
const string kinetica.InsertRecordsRequest< T >.Options.DRY_RUN = "dry_run" |
const string kinetica.InsertRecordsRequest< T >.Options.FALSE = "false" |
Definition at line 897 of file InsertRecords.cs.
const string kinetica.InsertRecordsRequest< T >.Options.IGNORE_EXISTING_PK = "ignore_existing_pk" |
Specifies the record collision error-suppression policy for inserting into a table with a primary key, only used when not in upsert mode (upsert mode is disabled when UPDATE_ON_EXISTING_PK is FALSE).
Supported values:
The default value is FALSE.
Definition at line 923 of file InsertRecords.cs.
const string kinetica.InsertRecordsRequest< T >.Options.RETURN_INDIVIDUAL_ERRORS = "return_individual_errors" |
const string kinetica.InsertRecordsRequest< T >.Options.RETURN_RECORD_IDS = "return_record_ids" |
const string kinetica.InsertRecordsRequest< T >.Options.TRUE = "true" |
Definition at line 896 of file InsertRecords.cs.
const string kinetica.InsertRecordsRequest< T >.Options.TRUNCATE_STRINGS = "truncate_strings" |
const string kinetica.InsertRecordsRequest< T >.Options.UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Specifies the record collision policy for inserting into a table with a primary key.
Supported values:
The default value is FALSE.
Definition at line 894 of file InsertRecords.cs.