Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.FilterByStringRequest.Mode Struct Reference

The string filtering mode to apply. More...

Public Attributes

const string SEARCH = "search"
 Full text search query with wildcards and boolean operators. More...
 
const string EQUALS = "equals"
 Exact whole-string match (accelerated). More...
 
const string CONTAINS = "contains"
 Partial substring match (not accelerated). More...
 
const string STARTS_WITH = "starts_with"
 Strings that start with the given expression (not accelerated). More...
 
const string REGEX = "regex"
 Full regular expression search (not accelerated). More...
 

Detailed Description

The string filtering mode to apply.

See below for details. Values: search, equals, contains, starts_with, regex.
A set of string constants for the parameter <member name="mode">.

Definition at line 30 of file FilterByString.cs.

Member Data Documentation

const string kinetica.FilterByStringRequest.Mode.CONTAINS = "contains"

Partial substring match (not accelerated).

If the column is a string type (non-charN) and the number of records is too large, it will return 0.

Definition at line 45 of file FilterByString.cs.

const string kinetica.FilterByStringRequest.Mode.EQUALS = "equals"

Exact whole-string match (accelerated).

Definition at line 40 of file FilterByString.cs.

const string kinetica.FilterByStringRequest.Mode.REGEX = "regex"

Full regular expression search (not accelerated).

If the column is a string type (non-charN) and the number of records is too large, it will return 0.

Definition at line 55 of file FilterByString.cs.

const string kinetica.FilterByStringRequest.Mode.SEARCH = "search"

Full text search query with wildcards and boolean operators.

Note that for this mode, no column can be specified in <member name="column_names">; all string columns of the table that have text search enabled will be searched.

Definition at line 37 of file FilterByString.cs.

const string kinetica.FilterByStringRequest.Mode.STARTS_WITH = "starts_with"

Strings that start with the given expression (not accelerated).

If the column is a string type (non-charN) and the number of records is too large, it will return 0.

Definition at line 50 of file FilterByString.cs.


The documentation for this struct was generated from the following file: