Kinetica C# API
Version 7.1.10.0
|
A set of parameters for Kinetica.filterByTable(string,string,string,string,string,IDictionary{string, string}). More...
Classes | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
FilterByTableRequest () | |
Constructs a FilterByTableRequest object with default parameters. More... | |
FilterByTableRequest (string table_name, string view_name, string column_name, string source_table_name, string source_table_column_name, IDictionary< string, string > options=null) | |
Constructs a FilterByTableRequest 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 | table_name [get, set] |
Name of the table whose data will be filtered, in [schema_name. More... | |
string | view_name [get, set] |
If provided, then this will be the name of the view containing the results, in [schema_name. More... | |
string | column_name = "" [get, set] |
Name of the column by whose value the data will be filtered from the table designated by . More... | |
string | source_table_name [get, set] |
Name of the table whose data will be compared against in the table called , in [schema_name. More... | |
string | source_table_column_name [get, set] |
Name of the column in the whose values will be used as the filter for table . More... | |
IDictionary< string, string > | options [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 Kinetica.filterByTable(string,string,string,string,string,IDictionary{string, string}).
Filters objects in one table based on objects in another table. The user must specify matching column types from the two tables (i.e. the target table from which objects will be filtered and the source table based on which the filter will be created); the column names need not be the same. If a view_name is specified, then the filtered objects will then be put in a newly created view. The operation is synchronous, meaning that a response will not be returned until all objects are fully available in the result view. The return value contains the count (i.e. the size) of the resulting view.
Definition at line 33 of file FilterByTable.cs.
|
inline |
Constructs a FilterByTableRequest object with default parameters.
Definition at line 459 of file FilterByTable.cs.
|
inline |
Constructs a FilterByTableRequest object with the specified parameters.
table_name | Name of the table whose data will be filtered, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. |
view_name | If provided, then this will be the name of the view containing the results, in [schema_name.]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''. |
column_name | Name of the column by whose value the data will be filtered from the table designated by . |
source_table_name | Name of the table whose data will be compared against in the table called , in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. |
source_table_column_name | Name of the column in the whose values will be used as the filter for table . Must be a geospatial geometry column if in 'spatial' mode; otherwise, Must match the type of the . |
options | Optional parameters.
|
Definition at line 625 of file FilterByTable.cs.
|
getset |
Name of the column by whose value the data will be filtered from the table designated by .
Definition at line 305 of file FilterByTable.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 454 of file FilterByTable.cs.
|
getset |
Name of the column in the whose values will be used as the filter for table .
Must be a geospatial geometry column if in 'spatial' mode; otherwise, Must match the type of the .
Definition at line 322 of file FilterByTable.cs.
|
getset |
Name of the table whose data will be compared against in the table called , in [schema_name.
]table_name format, using standard name resolution rules. Must be an existing table.
Definition at line 313 of file FilterByTable.cs.
|
getset |
Name of the table whose data will be filtered, in [schema_name.
]table_name format, using standard name resolution rules. Must be an existing table.
Definition at line 291 of file FilterByTable.cs.
|
getset |
If provided, then this will be the name of the view containing the results, in [schema_name.
]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''.
Definition at line 300 of file FilterByTable.cs.