7 using System.Collections.Generic;
72 public const string TRUE =
"true";
73 public const string FALSE =
"false";
107 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
148 IDictionary<string, string>
options = null)
150 this.schema_name = schema_name ??
"";
151 this.options =
options ??
new Dictionary<string, string>();
174 public IList<IList<string>>
schema_tables {
get; set; } =
new List<IList<string>>();
178 public IList<IDictionary<string, string>>
additional_info {
get; set; } =
new List<IDictionary<string, string>>();
181 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string NO_ERROR_IF_NOT_EXISTS
If false will return an error if the provided schema_name does not exist.
string schema_name
Value of .
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in <member name="schema_names">.
ShowSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a ShowSchemaRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.showSchema(string,IDictionary{string, string}).
A set of parameters for Kinetica.showSchema(string,IDictionary{string, string}).
string schema_name
Name of the schema for which to retrieve the information.
IList< IList< string > > schema_tables
An array of arrays containing a list of tables in each of the respective <member name="schema_names">...
IList< string > schema_names
A list of all schema names for which information is returned
ShowSchemaRequest()
Constructs a ShowSchemaRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica