Kinetica C# API
Version 6.1.0.0
|
Optional parameters. More...
Public Attributes | |
const string | GLOBAL_EXPRESSION = "global_expression" |
An optional global expression to reduce the search space of the predicates listed in expressions. More... | |
const string | BYPASS_SAFETY_CHECKS = "bypass_safety_checks" |
When set to 'true', all predicates are available for primary key updates. More... | |
const string | TRUE = "true" |
const string | FALSE = "false" |
const string | UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Can be used to customize behavior when the updated primary key value already exists as described in Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>). More... | |
const string | RECORD_ID = "record_id" |
ID of a single record to be updated (returned in the call to Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>) or Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>)). More... | |
Optional parameters.
A set of string constants for the parameter options.
Definition at line 132 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.BYPASS_SAFETY_CHECKS = "bypass_safety_checks" |
When set to 'true', all predicates are available for primary key updates.
Keep in mind that it is possible to destroy data in this case, since a single predicate may match multiple objects (potentially all of records of a table), and then updating all of those records to have the same primary key will, due to the primary key uniqueness constraints, effectively delete all but one of those updated records. Supported values:
The default value is FALSE.
Definition at line 160 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.FALSE = "false" |
Definition at line 162 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.GLOBAL_EXPRESSION = "global_expression" |
An optional global expression to reduce the search space of the predicates listed in expressions.
Definition at line 138 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.RECORD_ID = "record_id" |
ID of a single record to be updated (returned in the call to Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>) or Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>)).
Definition at line 189 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.TRUE = "true" |
Definition at line 161 of file UpdateRecords.cs.
const string kinetica.RawUpdateRecordsRequest.Options.UPDATE_ON_EXISTING_PK = "update_on_existing_pk" |
Can be used to customize behavior when the updated primary key value already exists as described in Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>).
Supported values:
The default value is FALSE.
Definition at line 181 of file UpdateRecords.cs.