Kinetica C# API
Version 6.0.1.0
|
A set of parameters for /execute/proc. More...
Classes | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
ExecuteProcRequest () | |
Constructs an ExecuteProcRequest object with default parameters. More... | |
ExecuteProcRequest (string proc_name, IDictionary< string, string > _params=null, IDictionary< string, byte[]> bin_params=null, IList< string > input_table_names=null, IDictionary< string, IList< string >> input_column_names=null, IList< string > output_table_names=null, IDictionary< string, string > options=null) | |
Constructs an ExecuteProcRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | proc_name [get, set] |
Name of the proc to execute. More... | |
IDictionary< string, string > | _params [get, set] |
A map containing named parameters to pass to the proc. More... | |
IDictionary< string, byte[]> | bin_params = new Dictionary<string, string>() [get, set] |
A map containing named binary parameters to pass to the proc. More... | |
IList< string > | input_table_names = new Dictionary<string, byte[]>() [get, set] |
Names of the tables containing data to be passed to the proc. More... | |
IDictionary< string, IList < string > > | input_column_names = new List<string>() [get, set] |
Map of table names from to lists of names of columns from those tables that will be passed to the proc. More... | |
IList< string > | output_table_names = new Dictionary<string, IList<string>>() [get, set] |
Names of the tables to which output data from the proc will be written. More... | |
IDictionary< string, string > | options = new List<string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for /execute/proc.
Executes a proc. This endpoint is asynchronous and does not wait for the proc to complete before returning.
Definition at line 18 of file ExecuteProc.cs.
|
inline |
Constructs an ExecuteProcRequest object with default parameters.
Definition at line 148 of file ExecuteProc.cs.
|
inline |
Constructs an ExecuteProcRequest object with the specified parameters.
proc_name | Name of the proc to execute. Must be the name of a currently existing proc. |
_params | A map containing named parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. |
bin_params | A map containing named binary parameters to pass to the proc. Each key/value pair specifies the name of a parameter and its value. |
input_table_names | Names of the tables containing data to be passed to the proc. Each name specified must be the name of a currently existing table. If no table names are specified, no data will be passed to the proc. |
input_column_names | Map of table names from to lists of names of columns from those tables that will be passed to the proc. Each column name specified must be the name of an existing column in the corresponding table. If a table name from is not included, all columns from that table will be passed to the proc. |
output_table_names | Names of the tables to which output data from the proc will be written. If a specified table does not exist, it will automatically be created with the same schema as the corresponding table (by order) from , excluding any primary and shard keys. If a specified table is a non-persistent result table, it must not have primary or shard keys. If no table names are specified, no output data can be returned from the proc. |
options | Optional parameters.
|
Definition at line 209 of file ExecuteProc.cs.
|
getset |
A map containing named parameters to pass to the proc.
Each key/value pair specifies the name of a parameter and its value.
Definition at line 83 of file ExecuteProc.cs.
|
getset |
A map containing named binary parameters to pass to the proc.
Each key/value pair specifies the name of a parameter and its value.
Definition at line 88 of file ExecuteProc.cs.
|
getset |
Map of table names from to lists of names of columns from those tables that will be passed to the proc.
Each column name specified must be the name of an existing column in the corresponding table. If a table name from is not included, all columns from that table will be passed to the proc.
Definition at line 103 of file ExecuteProc.cs.
|
getset |
Names of the tables containing data to be passed to the proc.
Each name specified must be the name of a currently existing table. If no table names are specified, no data will be passed to the proc.
Definition at line 94 of file ExecuteProc.cs.
|
getset |
Optional parameters.
Definition at line 143 of file ExecuteProc.cs.
|
getset |
Names of the tables to which output data from the proc will be written.
If a specified table does not exist, it will automatically be created with the same schema as the corresponding table (by order) from , excluding any primary and shard keys. If a specified table is a non-persistent result table, it must not have primary or shard keys. If no table names are specified, no output data can be returned from the proc.
Definition at line 114 of file ExecuteProc.cs.
|
getset |
Name of the proc to execute.
Must be the name of a currently existing proc.
Definition at line 78 of file ExecuteProc.cs.