我正在尝试使用查询导出表,然后我想从 ms 访问文件中删除该查询对象,但它给了我错误 - 无法更新数据库。文件可能是只读的。
我的代码如下
MsAcs.OpenCurrentDatabase(newdb,false,"");
MsAcs.AutomationSecurity = Microsoft.Office.Core.MsoAutomationSecurity.msoAutomationSecurityForceDisable;
MsAcs.DoCmd.TransferText(Microsoft.Office.Interop.Access.AcTextTransferType.acExportDelim, Type.Missing, "tmpExport", csvfile, true, Type.Missing, Type.Missing);
MsAcs.DoCmd.DeleteObject(Microsoft.Office.Interop.Access.AcObjectType, "tmpExport");
给出错误