MLOperatorType (Compact 7)
3/12/2014
This enumeration specifies the comparison operators that are used to filter database properties.
Syntax
typedef enum _ MLOperatorType
{
EQU = 0,
NE,
LT,
LE,
GT,
GE,
LIKE,
MAX_OP
} MLOperatorType;
Elements
- EQU
Equal.
- NE
Not equal.
- LT
Less than.
- LE
Less than or equal.
- GT
Greater than.
- GE
Greater than or equal.
LIKE
Searches for a pattern match using the SQL pattern matching. The patterns that you can choose from are:- You can use "%" to match any string of any length (including zero length)
- You can use "_" to match any single character.
- MAX_OP
Maximum number of operators
Requirements
Header |
mlibdll.h, |