7 using System.Collections.Generic;
32 public const string BINARY =
"binary";
33 public const string JSON =
"json";
55 public const string TRUE =
"true";
56 public const string FALSE =
"false";
75 public long offset {
get;
set; } = 0;
87 public long limit {
get;
set; } = -9999;
103 public string encoding {
get;
set; } = Encoding.BINARY;
131 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
187 IDictionary<string, string>
options =
null)
260 IDictionary<string, string>
options =
null)
295 public const string TRUE =
"true";
296 public const string FALSE =
"false";
310 public IList<string>
type_names {
get;
set; } =
new List<string>();
327 public IList<string>
record_ids {
get;
set; } =
new List<string>();
353 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
383 public const string TRUE =
"true";
384 public const string FALSE =
"false";
398 public IList<string>
type_names {
get;
set; } =
new List<string>();
404 public IList<T>
data {
get;
set; } =
new List<T>();
409 public IList<string>
record_ids {
get;
set; } =
new List<string>();
435 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string HAS_MORE_RECORDS
Too many records.
IList< string > record_ids
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID ...
IList< string > type_names
The type IDs of the corresponding records in records_binary or records_json.
GetRecordsFromCollectionRequest(string table_name, long? offset=null, long? limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
A set of string constants for the parameter encoding.
KineticaData - class to help with Avro Encoding for Kinetica
string table_name
Name of the collection or table from which records are to be retrieved, in [schema_name.
GetRecordsFromCollectionRequest()
Constructs a GetRecordsFromCollectionRequest object with default parameters.
IList< string > record_ids
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID ...
const string TOTAL_NUMBER_OF_RECORDS
Total number of records.
IList< byte[]> records_binary
If the encoding parameter of the request was 'binary' then this list contains the binary encoded reco...
const string EXPRESSION
Filter expression to apply to the table.
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
A set of string constants for the parameter options.
A set of results returned by Kinetica.getRecordsFromCollection.
IDictionary< string, string > info
Additional information.
const string HAS_MORE_RECORDS
Too many records.
const string RETURN_RECORD_IDS
If TRUE then return the internal record ID along with each returned record.
A set of string constants for the parameter info.
IList< T > data
If the encoding parameter of the request was 'binary' then this list contains the binary encoded reco...
IList< string > type_names
The type IDs of the corresponding records in data or records_json.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
string table_name
Value of table_name.
A set of parameters for Kinetica.getRecordsFromCollection.
A set of results returned by Kinetica.getRecordsFromCollection.
string table_name
Value of table_name.
string encoding
Specifies the encoding for returned records; either BINARY or JSON.
long limit
A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to ...
const string TOTAL_NUMBER_OF_RECORDS
Total number of records.
IList< string > records_json
If the encoding parameter of the request was 'json', then this list contains the JSON encoded records...
A set of string constants for the parameter info.
GetRecordsFromCollectionRequest(string table_name, long? offset=null, long? limit=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.