gpt4 book ai didi

c# - 如何使用 C# 压缩 Msaccess 数据库

转载 作者:行者123 更新时间:2023-11-30 19:22:00 25 4
gpt4 key购买 nike

是否可以使用 c# 压缩 Msaccess 数据库,如果可以,请告诉我方法?

最佳答案

你可以试试这样的东西

public static void CompactAndRepair(string accessFile, Microsoft.Office.Interop.Access.Application app)
{
string tempFile = Path.Combine(Path.GetDirectoryName(accessFile),
Path.GetRandomFileName() + Path.GetExtension(accessFile));

app.CompactRepair(accessFile, tempFile, false);
app.Visible = false;

FileInfo temp = new FileInfo(tempFile);
temp.CopyTo(accessFile, true);
temp.Delete();
}

另见 Use the CompactRepair method of the Application object to compact and repair the database

关于c# - 如何使用 C# 压缩 Msaccess 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1866421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com