Qore CdsRestDataProvider Module Reference 2.0.0
Loading...
Searching...
No Matches
Query Operators

Variables

const CDSRestDataProvider::QUERY_OP_CONTAINS = "contains"
 
const CDSRestDataProvider::QUERY_OP_ENDSWITH = "endsWith"
 like/contains operator
 
const CDSRestDataProvider::QUERY_OP_EQ = "=="
 the Query equals operator (=) for use in queries
 
const CDSRestDataProvider::QUERY_OP_GE = ">="
 the Query greater than or equals operator (>=) for use in queries
 
const CDSRestDataProvider::QUERY_OP_GT = ">"
 the Query greater than operator (>) for use in queries
 
const CDSRestDataProvider::QUERY_OP_LE = "<="
 the Query less than or equals (<=) operator for use in queries
 
const CDSRestDataProvider::QUERY_OP_LT = "<"
 the Query less than (<) operator for use in queries
 
const CDSRestDataProvider::QUERY_OP_NE = "!="
 the Query not equals operator (!= or <>) for use in queries
 
const CDSRestDataProvider::QUERY_OP_NOT = "!"
 the Query "not" operator for use in queries
 
const CDSRestDataProvider::QUERY_OP_OR = "||"
 to combine Query expressions with "or" for use in queries
 
const CDSRestDataProvider::QUERY_OP_STARTSWITH = "startsWith"
 like/contains operator
 

Detailed Description

These are the operators that can be used in queries

Variable Documentation

◆ QUERY_OP_CONTAINS

const CDSRestDataProvider::QUERY_OP_CONTAINS = "contains"

like/contains operator

◆ QUERY_OP_EQ

const CDSRestDataProvider::QUERY_OP_EQ = "=="

the Query equals operator (=) for use in queries

See also
query_op_eq()

◆ QUERY_OP_GE

const CDSRestDataProvider::QUERY_OP_GE = ">="

the Query greater than or equals operator (>=) for use in queries

See also
query_op_ge()

◆ QUERY_OP_GT

const CDSRestDataProvider::QUERY_OP_GT = ">"

the Query greater than operator (>) for use in queries

See also
query_op_gt()

◆ QUERY_OP_LE

const CDSRestDataProvider::QUERY_OP_LE = "<="

the Query less than or equals (<=) operator for use in queries

See also
query_op_le()

◆ QUERY_OP_LT

const CDSRestDataProvider::QUERY_OP_LT = "<"

the Query less than (<) operator for use in queries

See also
query_op_lt()

◆ QUERY_OP_NE

const CDSRestDataProvider::QUERY_OP_NE = "!="

the Query not equals operator (!= or <>) for use in queries

See also
query_op_ne()

◆ QUERY_OP_NOT

const CDSRestDataProvider::QUERY_OP_NOT = "!"

the Query "not" operator for use in queries

See also
query_op_not()

◆ QUERY_OP_OR

const CDSRestDataProvider::QUERY_OP_OR = "||"

to combine Query expressions with "or" for use in queries

See also
query_wquery_op_or()