Compare Method

BerkeleyDB

Compare this cursor's position to another's.

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

Syntax

C#
public bool Compare(
	Cursor compareTo
)
Visual Basic (Declaration)
Public Function Compare ( _
	compareTo As Cursor _
) As Boolean
Visual C++
public:
bool Compare(
	Cursor^ compareTo
)

Parameters

compareTo
Type: BerkeleyDB..::.Cursor
The cursor with which to compare.

Return Value

True if both cursors point to the same item, false otherwise.

See Also