Move Method (KeyValuePair(DatabaseEntry, DatabaseEntry), Boolean, LockingInfo)

BerkeleyDB

Move the cursor to the specified key/data pair of the database. The cursor is positioned to a key/data pair if both the key and data match the values provided on the key and data parameters.

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

Syntax

C#
public bool Move(
	KeyValuePair<DatabaseEntry, DatabaseEntry> pair,
	bool exact,
	LockingInfo info
)
Visual Basic (Declaration)
Public Function Move ( _
	pair As KeyValuePair(Of DatabaseEntry, DatabaseEntry), _
	exact As Boolean, _
	info As LockingInfo _
) As Boolean
Visual C++
public:
bool Move(
	KeyValuePair<DatabaseEntry^, DatabaseEntry^> pair, 
	bool exact, 
	LockingInfo^ info
)

Parameters

pair
Type: System.Collections.Generic..::.KeyValuePair<(Of <(DatabaseEntry, DatabaseEntry>)>)
The key/data pair at which to position the cursor.
exact
Type: System..::.Boolean
If true, require the given key and data to match the key and data in the database exactly. If false, position the cursor at the smallest data value which is greater than or equal to the value provided by pair.Value (as determined by the comparison function).
info
Type: BerkeleyDB..::.LockingInfo
The locking behavior to use.

Return Value

True if the cursor was positioned successfully, false otherwise.

Remarks

If positioning the cursor fails, Current will contain an empty KeyValuePair<(Of <(TKey, TValue>)>).

If this flag is specified on a database configured without sorted duplicate support, the value of exact is ignored.

See Also