Qore SalesforceRestDataProvider Module Reference 1.0.1
Loading...
Searching...
No Matches
SOQL Operators

Variables

const SalesforceRestDataProvider::SOQL_OP_EQ = "="
 the SOQL equals operator (=) for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_GE = ">="
 the SOQL greater than or equals operator (>=) for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_GT = ">"
 the SOQL greater than operator (>) for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_IN = "in"
 the SOQL in operator for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_LE = "<="
 the SOQL less than or equals (<=) operator for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_LIKE = "like"
 
const SalesforceRestDataProvider::SOQL_OP_LT = "<"
 the SOQL less than (<) operator for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_NE = "!="
 the SOQL not equals operator (!= or <>) for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_NOT = "not"
 the SOQL "not" operator for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_NOT_IN = "not in"
 the SOQL in operator for use in where clauses More...
 
const SalesforceRestDataProvider::SOQL_OP_OR = "or"
 to combine SOQL expressions with "or" for use in where clauses More...
 

Detailed Description

These are the operators that can be used in where clauses

Variable Documentation

◆ SOQL_OP_EQ

const SalesforceRestDataProvider::SOQL_OP_EQ = "="

the SOQL equals operator (=) for use in where clauses

See also
soql_op_eq()

◆ SOQL_OP_GE

const SalesforceRestDataProvider::SOQL_OP_GE = ">="

the SOQL greater than or equals operator (>=) for use in where clauses

See also
soql_op_ge()

◆ SOQL_OP_GT

const SalesforceRestDataProvider::SOQL_OP_GT = ">"

the SOQL greater than operator (>) for use in where clauses

See also
soql_op_gt()

◆ SOQL_OP_IN

const SalesforceRestDataProvider::SOQL_OP_IN = "in"

the SOQL in operator for use in where clauses

See also
soql_op_in()

◆ SOQL_OP_LE

const SalesforceRestDataProvider::SOQL_OP_LE = "<="

the SOQL less than or equals (<=) operator for use in where clauses

See also
soql_op_le()

◆ SOQL_OP_LIKE

const SalesforceRestDataProvider::SOQL_OP_LIKE = "like"

like operator

◆ SOQL_OP_LT

const SalesforceRestDataProvider::SOQL_OP_LT = "<"

the SOQL less than (<) operator for use in where clauses

See also
soql_op_lt()

◆ SOQL_OP_NE

const SalesforceRestDataProvider::SOQL_OP_NE = "!="

the SOQL not equals operator (!= or <>) for use in where clauses

See also
soql_op_ne()

◆ SOQL_OP_NOT

const SalesforceRestDataProvider::SOQL_OP_NOT = "not"

the SOQL "not" operator for use in where clauses

See also
soql_op_not()

◆ SOQL_OP_NOT_IN

const SalesforceRestDataProvider::SOQL_OP_NOT_IN = "not in"

the SOQL in operator for use in where clauses

See also
soql_op_not_in()

◆ SOQL_OP_OR

const SalesforceRestDataProvider::SOQL_OP_OR = "or"

to combine SOQL expressions with "or" for use in where clauses

See also
soql_wsoql_op_or()