Append Method (DatabaseEntry)

BerkeleyDB

Append the data item to the end of the database.

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

Syntax

C#
public uint Append(
	DatabaseEntry data
)
Visual Basic (Declaration)
Public Function Append ( _
	data As DatabaseEntry _
) As UInteger
Visual C++
public:
unsigned int Append(
	DatabaseEntry^ data
)

Parameters

data
Type: BerkeleyDB..::.DatabaseEntry
The data item to store in the database

Return Value

The record number allocated to the record

See Also