如何从MS Access获取视图列表

时间:2011-04-07 12:13:47

标签: c# 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数据库的查询和列的列表。

1 个答案:

答案 0 :(得分:2)