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:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic enum DMSQLOperator
Public Enumeration DMSQLOperator
public enum class DMSQLOperator
DMLibrary.DMSQLOperator = function();
DMLibrary.DMSQLOperator.createEnum('DMLibrary.DMSQLOperator', false);
Members | Member name | Value | Description |
---|
| DMSQ_EQUAL | 0 | Operand is equal to. |
| DMSQ_NOTEQUAL | 1 | Operand is not equal to. |
| DMSQ_LESSTHAN | 2 | Operand is less than. |
| DMSQ_GREATERTHAN | 3 | Operand is greater than. |
| DMSQ_BEGINSWITH | 4 | Operand begins with. |
| DMSQ_NOTBEGINSWITH | 5 | Operand does not begin with. |
| DMSQ_ENDSWITH | 6 | Operand ends with. |
| DMSQ_NOTENDSWITH | 7 | Operand does not end with. |
| DMSQ_CONTAINS | 8 | Operand contains. |
| DMSQ_NOTCONTAINS | 9 | Operand does not contain. |
| DMSQ_IN | 10 | Operand can be found within the set specified. |
| DMSQ_NOTIN | 11 | Operand cannot be found within the set specified. |
| DMSQ_BETWEEN | 12 | Operand's value is between the values given. |
| DMSQ_NOTBETWEEN | 13 | Operand's value is not between the values given. |
See Also