中的数据库表的列表

中的数据库表的列表

本文介绍了我怎样才能在Access(Jet)中的数据库表的列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要看看如果一个表存在于使用我的C#程序中访问数据库。是否知道有其他数据库,将返回表清单的SQL命令。有没有这样的命令访问/喷气数据库?

I need to see if a table exists in an Access database used by my c# program. Is know there are SQL commands for other databases that will return a list of tables. Is there such a command for Access/Jet databases?

推荐答案

尝试的getSchema()

Try the GetSchema()

    connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\access.mdb";

    connection.Open();

    DataTable userTables = connection.GetSchema("Tables");

这篇关于我怎样才能在Access(Jet)中的数据库表的列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 07:43