实际上我正在尝试连接我的winform数据挖掘应用程序,以便在应用程序运行时通过打开的对话框访问数据库文件。因为我正在尝试连接到任何未知的数据库文件(mdb / accdb),所以我不知道它的表名。但是为了将数据库连接到datagridview,你必须提供sql查询作为命令。我的问题是,有没有办法可以在任何连接的访问数据库文件中加载所有数据(记录),而无需指定/知道访问db文件的表名。
感谢
答案 0 :(得分:1)
您可以先获取或列出表名。正如海登先生在他的博客http://davidhayden.com/blog/dave/archive/2006/10/01/GetListOfTablesInMicrosoftAccessUsingGetSchema.aspx
上所解释的那样// Microsoft Access provider factory
DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");
DataTable userTables = null;
using (DbConnection connection = factory.CreateConnection())
{
// c:\test\test.mdb
connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\test\\test.mdb";
// We only want user tables, not system tables
string[] restrictions = new string[4];
restrictions[3] = "Table";
connection.Open();
// Get list of user tables
userTables = connection.GetSchema("Tables", restrictions);
}
List<string> tableNames = new List<string>();
for (int i=0; i < userTables.Rows.Count; i++)
tableNames.Add(userTables.Rows[i][2].ToString());