Qore DataProvider Module Reference  2.1.2
DataProvider Generic Search Operators

Variables

const DataProvider::DP_SEARCH_OP_BETWEEN = "between"
 Identifies the generic data provider "between" operator for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_EQ = "="
 Identifies the generic data provider equals operator (=) for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_GE = ">="
 Identifies the generic data provider greater than or equals operator (>=) for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_GT = ">"
 Identifies the generic data provider greater than operator (>) for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_IN = "in"
 Identifies the generic data provider "in" operator for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_LE = "<="
 Identifies the generic data provider less than or equals (<=) operator for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_LT = "<"
 Identifies the generic data provider less than (<) operator for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_NE = "!="
 Identifies the generic data provider not equals operator (!= or <>) for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_NOT = "not"
 Identifies the generic data provider "not" operator for use in generic search criteria. More...
 
const DataProvider::DP_SEARCH_OP_REGEX = "regex"
 Identifies the regex operator for use in generic search criteria. More...
 

Detailed Description

These are the generic operators that can be used for searching using the generic data provider search APIs

Variable Documentation

◆ DP_SEARCH_OP_BETWEEN

const DataProvider::DP_SEARCH_OP_BETWEEN = "between"

Identifies the generic data provider "between" operator for use in generic search criteria.

See also
dp_op_between()

◆ DP_SEARCH_OP_EQ

const DataProvider::DP_SEARCH_OP_EQ = "="

Identifies the generic data provider equals operator (=) for use in generic search criteria.

See also
dp_op_eq()

◆ DP_SEARCH_OP_GE

const DataProvider::DP_SEARCH_OP_GE = ">="

Identifies the generic data provider greater than or equals operator (>=) for use in generic search criteria.

See also
dp_op_ge()

◆ DP_SEARCH_OP_GT

const DataProvider::DP_SEARCH_OP_GT = ">"

Identifies the generic data provider greater than operator (>) for use in generic search criteria.

See also
dp_op_gt()

◆ DP_SEARCH_OP_IN

const DataProvider::DP_SEARCH_OP_IN = "in"

Identifies the generic data provider "in" operator for use in generic search criteria.

See also
dp_op_in()

◆ DP_SEARCH_OP_LE

const DataProvider::DP_SEARCH_OP_LE = "<="

Identifies the generic data provider less than or equals (<=) operator for use in generic search criteria.

See also
dp_op_le()

◆ DP_SEARCH_OP_LT

const DataProvider::DP_SEARCH_OP_LT = "<"

Identifies the generic data provider less than (<) operator for use in generic search criteria.

See also
dp_op_lt()

◆ DP_SEARCH_OP_NE

const DataProvider::DP_SEARCH_OP_NE = "!="

Identifies the generic data provider not equals operator (!= or <>) for use in generic search criteria.

See also
dp_op_ne()

◆ DP_SEARCH_OP_NOT

const DataProvider::DP_SEARCH_OP_NOT = "not"

Identifies the generic data provider "not" operator for use in generic search criteria.

See also
dp_op_not()

◆ DP_SEARCH_OP_REGEX

const DataProvider::DP_SEARCH_OP_REGEX = "regex"

Identifies the regex operator for use in generic search criteria.

See also
dp_op_like()