如何使OleDbConnection释放文件句柄

时间:2013-10-09 03:46:38

标签: c# ms-access connection

我尝试在使用它创建MDB文件后关闭OleDbConnection对象,以便我可以将文件移动到其他位置。我将此代码放在方法的末尾

            //Close The Connection So that the file can be access. 
            OleDbConnection.ReleaseObjectPool();
            sceConnection.Close();
            sceConnection.Dispose();

但它没有用。我仍然得到消息:该文件正由另一个进程使用。

0 个答案:

没有答案