本文介绍了你能帮帮我吗我想用C#压缩和修复我的accdb吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

兄弟们,我想压缩和修复我的accdb数据库..



我搜索并找到了这段代码,但我不知道如何使用它?



Please brothers I want to compress and repair my accdb database..

I search and found this code but I don't how to use it ?

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();
        }

推荐答案

Microsoft.Office.Interop.Access.Application msAccess = new Microsoft.Office.Interop.Access.Application();





等等。可能很长一段时间......



Wait. Probably a long time...



这篇关于你能帮帮我吗我想用C#压缩和修复我的accdb吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 15:25