在使用 OleDbConnection 对象创建 MDB 文件后,我尝试关闭它,以便可以将文件移动到其他位置。我将此代码放在方法的末尾
//Close The Connection So that the file can be access.
OleDbConnection.ReleaseObjectPool();
sceConnection.Close();
sceConnection.Dispose();
但它没有用。我仍然收到消息:该文件正在被另一个进程使用。