Move Method (UInt32)

BerkeleyDB

Position the cursor at a specific key/data pair in the database, and store the key/data pair in Current.

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

Syntax

C#
public bool Move(
	uint recno
)
Visual Basic (Declaration)
Public Function Move ( _
	recno As UInteger _
) As Boolean
Visual C++
public:
bool Move(
	unsigned int recno
)

Parameters

recno
Type: System..::.UInt32
The specific numbered record of the database at which to position the cursor.

Return Value

True if the cursor was positioned successfully, false otherwise.

See Also