Qore CdsRestDataProvider Module Reference 2.0.0
Loading...
Searching...
No Matches
CDSRestDataProvider Namespace Reference

Qore CDSRestDataProviderDefs definitions. More...

Classes

hashdecl  QueryOperatorInfo
 Query operator info hash as returned by all operator functions. More...
 

Functions

hash< QueryOperatorInfoquery_make_op (string op, auto arg)
 
hash< QueryOperatorInfoquery_op_contains (string str)
 returns an QueryOperatorInfo hash for the "contains" operator with the given argument for use in cds queries
 
hash< QueryOperatorInfoquery_op_eq (auto arg)
 returns an QueryOperatorInfo hash for the "=" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_ge (auto arg)
 returns an QueryOperatorInfo hash for the ">=" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_gt (auto arg)
 returns an QueryOperatorInfo hash for the ">" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_le (auto arg)
 returns an QueryOperatorInfo hash for the "<=" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_like (string str)
 returns an QueryOperatorInfo hash for the "contains" operator with the given argument for use in cds queries
 
hash< QueryOperatorInfoquery_op_lt (auto arg)
 returns an QueryOperatorInfo hash for the "<" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_ne (auto arg)
 returns an QueryOperatorInfo hash for the "!=" or "<>" operator with the given argument for use in cds queries when comparing column values to immediate values
 
hash< QueryOperatorInfoquery_op_not (hash arg)
 returns an QueryOperatorInfo hash for the "not" operator; for use in cds queries
 
hash< string, hash< QueryOperatorInfo > > query_wop_or (hash< auto > h1, hash< auto > h2)
 returns an QueryOperatorInfo hash with a fake "_OR_" column name; the list of arguments to the function is combined such that each hash in the list generates SQL expressions combined with "and" logic, and each of those clauses is combined with "or" logic; this is for use in cds queries
 

Variables

const DefaultQueryOpMap = ...
 a hash of valid operators for use in queries
 
const QUERY_OP_CONTAINS = "contains"
 
const QUERY_OP_ENDSWITH = "endswith"
 like/contains operator
 
const QUERY_OP_EQ = "eq"
 the Query equals operator (=) for use in queries
 
const QUERY_OP_GE = "ge"
 the Query greater than or equals operator (>=) for use in queries
 
const QUERY_OP_GT = "gt"
 the Query greater than operator (>) for use in queries
 
const QUERY_OP_LE = "le"
 the Query less than or equals (<=) operator for use in queries
 
const QUERY_OP_LT = "lt"
 the Query less than (<) operator for use in queries
 
const QUERY_OP_NE = "ne"
 the Query not equals operator (!= or <>) for use in queries
 
const QUERY_OP_NOT = "not"
 the Query "not" operator for use in queries
 
const QUERY_OP_OR = "or"
 to combine Query expressions with "or" for use in queries
 
const QUERY_OP_STARTSWITH = "startswith"
 like/contains operator
 

Detailed Description

Qore CDSRestDataProviderDefs definitions.

CDSRestDataProviderDefs.qc Copyright 2023 - 2024 Qore Technologies, s.r.o.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. contains all public definitions in the CDSRestDataProvider module