Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.filterByString. More...
Classes | |
struct | Mode |
A set of string constants for the parameter mode. More... | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
FilterByStringRequest () | |
Constructs a FilterByStringRequest object with default parameters. More... | |
FilterByStringRequest (string table_name, string view_name, string expression, string mode, IList< string > column_names, IDictionary< string, string > options=null) | |
Constructs a FilterByStringRequest 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 on which the filter operation will be performed, 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 | expression [get, set] |
The expression with which to filter the table. More... | |
string | mode [get, set] |
The string filtering mode to apply. More... | |
IList< string > | column_names = new List<string>() [get, set] |
List of columns on which to apply the filter. More... | |
IDictionary< string, string > | options = new Dictionary<string, 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 Kinetica.filterByString.
Calculates which objects from a table or view match a string expression for the given string columns. Setting CASE_SENSITIVE can modify case sensitivity in matching for all modes except SEARCH. For SEARCH mode details and limitations, see Full Text Search.
Definition at line 22 of file FilterByString.cs.
|
inline |
Constructs a FilterByStringRequest object with default parameters.
Definition at line 237 of file FilterByString.cs.
|
inline |
Constructs a FilterByStringRequest object with the specified parameters.
table_name | Name of the table on which the filter operation will be performed, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table or view. |
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 ''. |
expression | The expression with which to filter the table. |
mode | The string filtering mode to apply. See below for details. Supported values:
|
column_names | List of columns on which to apply the filter. Ignored for SEARCH mode. |
options | Optional parameters.
|
Definition at line 357 of file FilterByString.cs.
|
getset |
List of columns on which to apply the filter.
Ignored for SEARCH mode.
Definition at line 174 of file FilterByString.cs.
|
getset |
The expression with which to filter the table.
Definition at line 129 of file FilterByString.cs.
|
getset |
The string filtering mode to apply.
Supported values:
Definition at line 169 of file FilterByString.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 233 of file FilterByString.cs.
|
getset |
Name of the table on which the filter operation will be performed, in [schema_name.
]table_name format, using standard name resolution rules.
Must be an existing table or view.
Definition at line 116 of file FilterByString.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 126 of file FilterByString.cs.