Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Comparison operation for filter defined as JET_INDEX_COLUMN.
Namespace: Microsoft.Isam.Esent.Interop.Windows8
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Enumeration JetRelop
'Usage
Dim instance As JetRelop
public enum JetRelop
Members
| Member name | Description | |
|---|---|---|
| Equals | Accept only rows which have column value equal to the given value. | |
| PrefixEquals | Accept only rows which have columns whose prefix matches the given value. | |
| NotEquals | Accept only rows which have column value not equal to the given value. | |
| LessThanOrEqual | Accept only rows which have column value less than or equal a given value. | |
| LessThan | Accept only rows which have column value less than a given value. | |
| GreaterThanOrEqual | Accept only rows which have column value greater than or equal a given value. | |
| GreaterThan | Accept only rows which have column value greater than a given value. | |
| BitmaskEqualsZero | Accept only rows which have column value ANDed with a given bitmask yielding zero. | |
| BitmaskNotEqualsZero | Accept only rows which have column value ANDed with a given bitmask yielding non-zero. |