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.proc_name = proc_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>();
IDictionary< string, string > options
Optional parameters.
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
A set of parameters for Kinetica.hasProc(string,IDictionary{string, string}).
string proc_name
Name of the proc to check for existence.
IDictionary< string, string > info
Additional information.
bool proc_exists
Indicates whether the proc exists or not.
A set of results returned by Kinetica.hasProc(string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Indicates whether the proc exists or not.
HasProcRequest()
Constructs a HasProcRequest object with default parameters.