クエリを使用してテーブルをエクスポートしようとしていますが、そのクエリオブジェクトをms accessファイルから削除したいのですが、エラーが発生します-データベースを更新できません。ファイルは読み取り専用である可能性があります。
以下の私のコード
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");
エラーが発生します