欢迎光临
我们一直在努力

OLE DB取得数据库的架构信息-.NET教程,数据库应用

建站超值云服务器,限时71元/月

关于如何取得数据库架构信息,对于取得sql server和oracal的数据库结构可能比较简单,方法也比较多。

这里整理了一个对于所有能用ado.net链接的数据库(比如access,db4格式的dbf自由表等)都通用的方法

1、首先就是链接各种数据库的链接字符串,都是用ado.net,命名空间是:using system.data.oledb;

用几种数据库举个例子,需要其他的数据库链接可以到这里查:http://www.connectionstrings.com/

但要是ole db, oledbconnection (.net) 的链接方式。

sql server数据库连接字符串      string sconnstr = “provider=sqloledb;data source=aron1;initial catalog=pubs;user id=sa;password=asdasd;” ;

access数据库连接字符串

    string sconnstr = “provider=microsoft.jet.oledb.4.0;data source=\ omepath\\mydb.mdb;user id=admin;password=;”;dbf表(db4格式)连接字符串      string sconnstr = “provider=microsoft.jet.oledb.4.0;data source=c:\\folder;extended properties=dbase iv;user id=admin;password=” ;foxpro数据库连接字符串

    string sconnstr = “provider=vfpoledb.1;data source=c:\\mydatadirectory\\;collating sequence=general” ;excel文件连接字符串

    string sconnstr = “provider=microsoft.jet.oledb.4.0;data source=c:\\myexcel.xls;extended properties=””excel 8.0;hdr=yes;imex=1″””;udl文件连接字符串

    string sconnstr = “file name=c:\\mydatalink.udl;” ;

  

2、取得数据库架构信息,这里我以取得数据库的表格列表为例,代码如下   

/// <summary>  /// 取得一个数据库的表格列表,对所有用oledb连接的数据库都可使用  /// </summary>  /// <param name=”sconnstr”>数据库连接字符串</param>  /// <returns>表格列表数组</returns>  public string[] gettablist( string sconnstr )  {   if( sconnstr == null ) throw new argumentnullexception( “sconnstr” );

   string[] stblist;   using( oledbconnection conn = new oledbconnection( sconnstr ) )   {    conn.open();    datatable dt = conn.getoledbschematable( oledbschemaguid.tables,     new object[] {null, null, null, “table”});    conn.close();

    if ( dt.rows.count > 0 )    {     stblist = new string[dt.rows.count];     int i = 0;     foreach ( datarow dr in dt.rows )     {      stblist[i] = dr[“table_name”].tostring();      i += 1;     }    }    else     {     stblist = new string[1];     stblist[0] = “<没有表格>”;    }   }   return stblist;  }

 

 其中

datatable dt = conn.getoledbschematable( oledbschemaguid.tables,     new object[] {null, null, null, “table”});

这一句是关键,是使用 oledbconnection 对象的 getoledbschematable 方法展示架构信息

getoledbschematable 返回填充了架构信息的 datatable。

你可以让这个datatable直接显示出来,就是详细的信息了。

如果你需要查数据库架构的其他信息时,

比如数据源、表和视图得到的目录以及所存在的约束等。表中的架构信息包括主键、列和自动编号字段。

只需要改变getoledbschematable的参数设置,具体参数可查看

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemdataoledboledbschemaguidmemberstopic.asp

 

3、调用gettablist( sconnstr )就能返回那个数据库的中表格列表

sconnstr 连接的是那种数据库,只要是ado.net支持的就能返回结果。

当连接的是udl文件的时候,想通过udl文件再连接到其他数据库时,选用的驱动一定也要是oledb。

 

 

参考:

oledbschemaguid 成员http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemdataoledboledbschemaguidmemberstopic.asp

how to:使用 getoledbschematable 和 visual c# .net 检索架构信息

http://support.microsoft.com/default.aspx?scid=kb;zh-cn;309681#3

connectionstrings

http://www.connectionstrings.com/

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » OLE DB取得数据库的架构信息-.NET教程,数据库应用
分享到: 更多 (0)