Data Port Sync 1.0.500

DbSeekOptions Enumeration

[This is preliminary documentation and subject to change.]

Options that specify how to Seek on an index. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

[Visual Basic]
Public Enum DbSeekOptions
[C#]
public enum DbSeekOptions

Members

Member Name Description Value
FirstEqual Advances to the first matching row on the index, in index order. 1
LastEqual Advances to the last matching row on the index, in index order. 2
AfterEqual Advances to the last matching row on the index. If there are no matching rows, advances to the first row with values after the seek value, in index order. 4
After Advances to the first row with values after the seek value, in index order. 8
BeforeEqual Advances to the first matching row on the index. If there are no matching rows, advances to the last row with values before the seek value, in index order. 16
Before Advances to the last row with values before the seek value, in index order. 32

Requirements

Namespace: Primeworks.DataPortSync.Jet

Assembly: DataPortSync (in DataPortSync.dll)

See Also

Primeworks.DataPortSync.Jet Namespace