Retrieve a specific numbered key/data pair from the database.
Namespace:
BerkeleyDBAssembly: libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0
Syntax
C# |
---|
public KeyValuePair<DatabaseEntry, DatabaseEntry> Get( uint recno, Transaction txn ) |
Visual Basic (Declaration) |
---|
Public Function Get ( _ recno As UInteger, _ txn As Transaction _ ) As KeyValuePair(Of DatabaseEntry, DatabaseEntry) |
Visual C++ |
---|
public: KeyValuePair<DatabaseEntry^, DatabaseEntry^> Get( unsigned int recno, Transaction^ txn ) |
Parameters
- recno
- Type: System..::.UInt32
The record number of the record to be retrieved.
- txn
- Type: BerkeleyDB..::.Transaction
txn is a Transaction object returned from BeginTransaction()()(); if the operation is part of a Berkeley DB Concurrent Data Store group, txn is a handle returned from BeginCDSGroup()()(); otherwise null.