Open Method (String, DatabaseConfig)

BerkeleyDB

Instantiate a new Database object and open the database represented by Filename. The file specified by Filename must exist.

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

Syntax

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

Parameters

Filename
Type: System..::.String
The name of an underlying file that will be used to back the database.
cfg
Type: BerkeleyDB..::.DatabaseConfig
The database's configuration

Return Value

A new, open database object

Remarks

If AutoCommit is set, the operation will be implicitly transaction protected. Note that transactionally protected operations on a datbase object requires the object itself be transactionally protected during its open.

See Also