Write to the blob accessed by the database stream.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet61 (in libdb_dotnet61.dll) Version: 6.1.23.0

Syntax

C#
public bool Write(
	DatabaseEntry data,
	long offset
)
Visual Basic (Declaration)
Public Function Write ( _
	data As DatabaseEntry, _
	offset As Long _
) As Boolean
Visual C++
public:
bool Write(
	DatabaseEntry^ data, 
	long long offset
)

Parameters

data
Type: BerkeleyDB..::.DatabaseEntry
The DatabaseEntry containing the data to write. into the blob.
offset
Type: System..::.Int64
The position in bytes in the blob where the writing starts.

Return Value

True if the writing succeeds and false otherwise.

Exceptions

ExceptionCondition
BerkeleyDB..::.DatabaseException Thrown if there is any failure.

See Also