首页 > 数据库 > Access > 正文

用C#压缩和修复Access数据库(译)

2024-09-07 19:04:59
字体:
来源:转载
供稿:网友

介绍

       下面这段c# 代码可以用来压缩和修复access数据库,不管它是一个简单的".mdb"还是一个".mdw"网络共享数据库,这个过程和你在用ms access应用程序中使用的"工具-数据库实用工具-压缩和修复"时执行的操作完全一样.实例代码使用了"迟绑定"(运行中在内存中建立com对象),这样就不需要在工程中加入com引用了,也不需要在pc上安装ms access应用程序.只需要一个jet引擎(jet引擎包含在mdac安装包中,在windows nt4以后的版本中,系统已经自带了这个引擎).

背景

        不知你是否也厌烦了在工程中加入复杂的com库引用,但我相信这个纯.net代码将省去额外的交互操作, rcwscom引用.基本上,由于系统中安装的microsoft类库的不同(例如:ms office object library 9,10,11等等),我们也不知道用户pc中安装的office版本,所以我们要通过progid来访问com对象,而不能用clsid.例如,当调用"excel.application",,得到的是excel,而不管系统中安装ms office的版本,当在代码中加入"ms excel 10 object library"引用时,其实只是给应用程序加入了一个非常受限制的功能.所以我们使用system.reflection和迟绑定.

1. 实例代码

只需调用compactaccessdb函数即可压缩和修复目标数据库.

2. 参数:

  • connectionstring 用来连接到access数据库.
  • mdwfilename要压缩的mdb文件的全名(路径+文件名).

由于jet引擎的限制,执行此方法压缩access数据库会把结果生成为一个新文件,所以我们要还需要把这个新的access文件拷贝到目的位置覆盖原来未压缩文件.

当调用此方法时请确认被压缩数据库无打开的连接.

代码如下:

/// <summary>

/// mbd compact method (c) 2004 alexander youmashev

/// !!important!!

/// !make sure there's no open connections

///    to your db before calling this method!

/// !!important!!

/// </summary>

/// <param name="connectionstring">connection string to your db</param>

/// <param name="mdwfilename">full name

///     of an mdb file you want to compress.</param>

public static void compactaccessdb(string connectionstring, string mdwfilename)

{

    object[] oparams;

 

    //create an inctance of a jet replication object

    object objjro =

      activator.createinstance(type.gettypefromprogid("jro.jetengine"));

 

    //filling parameters array

    //cnahge "jet oledb:engine type=5" to an appropriate value

    // or leave it as is if you db is jet4x format (access 2000,2002)

    //(yes, jetengine5 is for jet4x, no misprint here)

    oparams = new object[] {

        connectionstring,

        "provider=microsoft.jet.oledb.4.0;data" +

        " source=c://tempdb.mdb;jet oledb:engine type=5"};

 

    //invoke a compactdatabase method of a jro object

    //pass parameters array

    objjro.gettype().invokemember("compactdatabase",

        system.reflection.bindingflags.invokemethod,

        null,

        objjro,

        oparams);

 

    //database is compacted now

    //to a new file c://tempdb.mdw

    //let's copy it over an old one and delete it

 

    system.io.file.delete(mdwfilename);

    system.io.file.move("c://tempdb.mdb", mdwfilename);

 

    //clean up (just in case)

    system.runtime.interopservices.marshal.releasecomobject(objjro);

    objjro=null;

}

注意事项

jet engine 5 用于 jet4x 数据库. 使用时要留意下表:

jet oledb:engine type

jet x.x format mdb files

1

jet10

2

jet11

3

jet2x

4

jet3x

5

jet4x



原文链接:   http://www.codeproject.com/cs/database/mdbcompact_latebind.asp

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表