使用.Net获取OLEDB数据库的架构.

获得SQL Server数据库的信息可以使用DMO组件或直接获取系统表的信息,例如表,视图,存储过程等存在sysobjects表中,列的信息存在syscolumns表中。如果要获取OLEDB数据库的信息,例如Access的数据库。

首先引用COM组件Microsoft ActiveX Data Object 2.x Library和Microsoft ADO Ext. 2.x For DDL...
下面是C#代码:

string strConnection = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=“C://Test.mdb“;

   ADODB.Connection conn = new ADODB.ConnectionClass();
   conn.ConnectionString = strConnection;
 
   conn.Open( strConnection , "Admin","" , 0 );
  
   
   ADOX.Catalog ctg = new ADOX.CatalogClass();
   ctg.let_ActiveConnection( conn );

  // Get tables info from oledb database
  for( int i = 0 ; i < ctg.Tables.Count-1; i++)
{
    Console.WriteLine( ctg.Tables[ i ].Name );
}

 // get columns information from a table named test.
ADOX.Table table = ctg.Tables[ "Test" ];
for( int i = 0 ; i < table.Columns.Count - 1; i++)
{
   ADOX.Column column = table.Columns[ i ];
   Console.WriteLine( column.Name + “/t“ + columns.Type.ToString() + column.DefaultSize.ToString() );
}

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值