如何从 MS Access 获取视图列表
以下是从 MS Access 获取表列表的代码。
List<string> tables = new List<string>();
foreach (DataRow schemaRow in datatable.Rows)
{
string sheet = schemaRow["TABLE_NAME"].ToString();
String[] excelSheets = new String[datatable.Rows.Count];
if (schemaRow["TABLE_TYPE"].ToString() == "TABLE")
tables.Add(sheet);
}
我需要 MS Access 数据库中的查询的视图和列列表。
The following is the code to get list of tables from MS Access.
List<string> tables = new List<string>();
foreach (DataRow schemaRow in datatable.Rows)
{
string sheet = schemaRow["TABLE_NAME"].ToString();
String[] excelSheets = new String[datatable.Rows.Count];
if (schemaRow["TABLE_TYPE"].ToString() == "TABLE")
tables.Add(sheet);
}
I need the list of Views and columns of the query from MS Access database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查这个作为起点,它检索表:
http:// /davidhayden.com/blog/dave/archive/2006/10/01/GetListOfTablesInMicrosoftAccessUsingGetSchema.aspx
..并使用此 API:http://davidhayden.com/blog/dave/archive/2006/01/15/2734.aspx
您可以使用相同的 API意见。
Check this out for a starting point, it retrieves tables:
http://davidhayden.com/blog/dave/archive/2006/10/01/GetListOfTablesInMicrosoftAccessUsingGetSchema.aspx
..and uses this API: http://davidhayden.com/blog/dave/archive/2006/01/15/2734.aspx
You can use the same API for views.