7 using System.Collections.Generic;
55 public const string BINARY =
"binary";
56 public const string JSON =
"json";
139 public const string UPDATE_ON_EXISTING_PK =
"update_on_existing_pk";
140 public const string TRUE =
"true";
141 public const string FALSE =
"false";
158 public const string RETURN_RECORD_IDS =
"return_record_ids";
171 public IList<byte[]>
list {
get;
set; } =
new List<byte[]>();
177 public IList<string>
list_str {
get;
set; } =
new List<string>();
246 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
316 IDictionary<string, string>
options = null)
318 this.table_name = table_name ??
"";
319 this.
list =
list ??
new List<byte[]>();
412 IDictionary<string, string>
options = null)
414 this.table_name = table_name ??
"";
415 this.
list =
list ??
new List<byte[]>();
416 this.list_str = list_str ??
new List<string>();
530 public const string UPDATE_ON_EXISTING_PK =
"update_on_existing_pk";
531 public const string TRUE =
"true";
532 public const string FALSE =
"false";
549 public const string RETURN_RECORD_IDS =
"return_record_ids";
562 public IList<T> data {
get;
set; } =
new List<T>();
614 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
684 IDictionary<string, string>
options = null)
686 this.table_name = table_name ??
"";
687 this.data = data ??
new List<T>();
688 this.
options = options ??
new Dictionary<string, string>();
703 public IList<string> record_ids {
get;
set; } =
new List<string>();
706 public int count_inserted {
get;
set; }
709 public int count_updated {
get;
set; }
IList< string > list_str
An array of JSON encoded data for the records to be added.
string table_name
Table to which the records are to be added.
RawInsertRecordsRequest(string table_name, IList< byte[]> list, IDictionary< string, string > options=null)
Constructs a RawInsertRecordsRequest object with the specified parameters.
IList< byte[]> list
An array of binary-encoded data for the records to be added.
RawInsertRecordsRequest(string table_name, IList< byte[]> list, IList< string > list_str, string list_encoding=null, IDictionary< string, string > options=null)
Constructs a RawInsertRecordsRequest object with the specified parameters.
InsertRecordsRequest()
Constructs an InsertRecordsRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
RawInsertRecordsRequest()
Constructs a RawInsertRecordsRequest object with default parameters.
string list_encoding
The encoding of the records to be inserted.
InsertRecordsRequest(string table_name, IList< T > data, IDictionary< string, string > options=null)
Constructs an InsertRecordsRequest object with the specified parameters.
The encoding of the records to be inserted.
A set of parameters for Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>).
A set of parameters for Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>).
A set of results returned by Kinetica.insertRecords<T>(string,IList<T>,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica