7 using System.Collections.Generic;
26 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
42 IDictionary<string, string>
options = null)
44 this.table_name = table_name ??
"";
45 this.options =
options ??
new Dictionary<string, string>();
74 public const string TRUE =
"true";
75 public const string FALSE =
"false";
98 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
string table_name
Value of
Indicates whether the table exists or not.
A set of results returned by Kinetica.hasTable(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
HasTableRequest()
Constructs a HasTableRequest object with default parameters.
HasTableRequest(string table_name, IDictionary< string, string > options=null)
Constructs a HasTableRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
string table_name
Name of the table to check for existence.
KineticaData - class to help with Avro Encoding for Kinetica
bool table_exists
Indicates whether the table exists or not.
A set of parameters for Kinetica.hasTable(string,IDictionary{string, string}).