Instantiate a new QueueDatabase object and open the database represented by Filename.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet181 (in libdb_dotnet181.dll) Version: 18.1.32.0

Syntax

C#
public static QueueDatabase Open(
	string Filename,
	QueueDatabaseConfig cfg
)
Visual Basic (Declaration)
Public Shared Function Open ( _
	Filename As String, _
	cfg As QueueDatabaseConfig _
) As QueueDatabase
Visual C++
public:
static QueueDatabase^ Open(
	String^ Filename, 
	QueueDatabaseConfig^ cfg
)

Parameters

Filename
Type: System..::.String
The name of an underlying file that is used to back the database. In-memory databases never intended to be preserved on disk may be created by setting this parameter to null.
cfg
Type: BerkeleyDB..::.QueueDatabaseConfig
The database's configuration

Return Value

A new, open database object

Remarks

If Filename is null, the database is strictly temporary and cannot be opened by any other thread of control, thus the database can only be accessed by sharing the single database object that created it, in circumstances where doing so is safe.

If AutoCommit is set, the operation is implicitly transaction protected. Transactionally protected operations on a database object requires the object itself be transactionally protected during its open.

See Also