Cursor.InsertLocation Enumeration

BerkeleyDB

Specifies where to place duplicate data elements of the key to which the cursor refers.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public enum InsertLocation
Visual Basic (Declaration)
Public Enumeration InsertLocation
Visual C++
public enum class InsertLocation

Members

Member nameDescription
AFTER
The new element appears immediately after the current cursor position.
BEFORE
The new element appears immediately before the current cursor position.
FIRST
The new element appears as the first of the data items for the given key
LAST
The new element appears as the last of the data items for the given key

See Also