7 using System.Collections.Generic;
93 public const string TRUE =
"true";
94 public const string FALSE =
"false";
166 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
226 IDictionary<string, string>
options = null)
228 this.schema_name = schema_name ??
"";
229 this.options =
options ??
new Dictionary<string, string>();
247 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
A set of parameters for Kinetica.dropSchema(string,IDictionary{string, string}).
DropSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a DropSchemaRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
string schema_name
Name of the schema to be dropped.
DropSchemaRequest()
Constructs a DropSchemaRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.dropSchema(string,IDictionary{string, string}).
string schema_name
Value of .
KineticaData - class to help with Avro Encoding for Kinetica
const string NO_ERROR_IF_NOT_EXISTS
If true and if the schema specified in schema_name does not exist, no error is returned.
const string CASCADE
If true, all tables within the schema will be dropped.