7 using System.Collections.Generic;
50 public const string BINARY =
"binary";
51 public const string JSON =
"json";
98 public const string RETURN_RECORD_IDS =
"return_record_ids";
99 public const string TRUE =
"true";
100 public const string FALSE =
"false";
117 public long limit {
get;
set; } = 10000;
160 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
207 IDictionary<string, string>
options = null)
209 this.table_name = table_name ??
"";
274 IDictionary<string, string>
options = null)
276 this.table_name = table_name ??
"";
303 public IList<string> type_names {
get;
set; } =
new List<string>();
308 public IList<byte[]> records_binary {
get;
set; } =
new List<byte[]>();
313 public IList<string> records_json {
get;
set; } =
new List<string>();
318 public IList<string> record_ids {
get;
set; } =
new List<string>();
343 public IList<string> type_names {
get;
set; } =
new List<string>();
348 public IList<T> data {
get;
set; } =
new List<T>();
353 public IList<string> record_ids {
get;
set; } =
new List<string>();
string encoding
Specifies the encoding for returned records; either 'binary' or 'json'.
GetRecordsFromCollectionRequest(string table_name, long offset=0, long limit=10000, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
IDictionary< string, string > options
RETURN_RECORD_IDS: If 'true' then return the internal record ID along with each returned record...
GetRecordsFromCollectionRequest()
Constructs a GetRecordsFromCollectionRequest object with default parameters.
Specifies the encoding for returned records; either 'binary' or 'json'.
GetRecordsFromCollectionRequest(string table_name, long offset=0, long limit=10000, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
string table_name
Name of the collection or table from which records are to be retrieved.
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
A set of parameters for Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
RETURN_RECORD_IDS: If 'true' then return the internal record ID along with each returned record...
A set of results returned by Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
A set of results returned by Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
long limit
A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to ...