Remove the database specified by file and database. If no database is specified, the underlying file represented by file is removed, incidentally removing all of the databases it contained.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0

Syntax

C#
public void RemoveDB(
	string file,
	string database,
	bool autoCommit
)
Visual Basic (Declaration)
Public Sub RemoveDB ( _
	file As String, _
	database As String, _
	autoCommit As Boolean _
)
Visual C++
public:
void RemoveDB(
	String^ file, 
	String^ database, 
	bool autoCommit
)

Parameters

file
Type: System..::.String
The physical file which contains the database(s) to be removed.
database
Type: System..::.String
The database to be removed.
autoCommit
Type: System..::.Boolean
If true, enclose RemoveDB within a transaction. If the call succeeds, changes made by the operation will be recoverable. If the call fails, the operation will have made no changes.

See Also