DMSQLOperator Enumeration

Alterian Email Manager 6.2.3 SDK Help File
An enumeration describing the various SQL operations that can be applied to criteria for queries. Widely used in the reporting library.

Namespace:  DMLibrary
Assembly:  DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420

Syntax
public enum DMSQLOperator
Members
Member nameValueDescription
DMSQ_EQUAL0Operand is equal to.
DMSQ_NOTEQUAL1Operand is not equal to.
DMSQ_LESSTHAN2Operand is less than.
DMSQ_GREATERTHAN3Operand is greater than.
DMSQ_BEGINSWITH4Operand begins with.
DMSQ_NOTBEGINSWITH5Operand does not begin with.
DMSQ_ENDSWITH6Operand ends with.
DMSQ_NOTENDSWITH7Operand does not end with.
DMSQ_CONTAINS8Operand contains.
DMSQ_NOTCONTAINS9Operand does not contain.
DMSQ_IN10Operand can be found within the set specified.
DMSQ_NOTIN11Operand cannot be found within the set specified.
DMSQ_BETWEEN12Operand's value is between the values given.
DMSQ_NOTBETWEEN13Operand's value is not between the values given.
See Also