我有一个使用 OleDb 连接的 Access 数据库。连接和使用情况一切正常,但我需要备份文件。
我正在关闭连接:
public class myDbHandlerClass
{
private OleDbConnection myConnection;
//in reality this string gets built by properties to the class
//it ends up being this...
//Yes Jet 4.0 this is an Access 2003 database
private string myConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=myDatabase.mdb";
public void OpenDatabase()
{
//to open the database
try
{
// Does a previous connection exist?
if ((myConnection != null) && myConnection.State != ConnectionState.Closed) return;
//No database connection string is specified, can't continue
if (string.IsNullOrEmpty(myConnectionString)) return;
myConnection = new OleDbConnection(myConnectionString);
myConnection.Open();
}
catch (Exception ex)
{
ExTrace.WriteLineIf(TraceLog.TraceError, ExTrace.ShowException(ex));
}
}
public void CloseDatabase()
{
try
{
if ((myConnection == null)) return;
if (myConnection.State != ConnectionState.Closed) myConnection.Dispose();
myConnection = null;
GC.Collect();
}
catch (Exception ex)
{
ExTrace.WriteLineIf(TraceLog.TraceError, ExTrace.ShowException(ex));
}
}
}
不会抛出异常,连接状态 == 关闭,myConnection == null,但 .ldb 文件永远不会消失。我的后续代码应该将“myDatabase.mdb”文件移动到“myDatabase.bak”失败,因为该文件已被我的程序使用。
我怎样才能确保它实际上是关闭的而不是锁定的。
编辑:我根据以下评论的建议修改了代码,现在它正在工作。
myConnection.Dispose();
并显式调用 GC.Collect()
是什么让它工作。
谢谢您的帮助!