0

I Want to get names of table from Ms Access into List. And I use

DataTable dt = con.GetSchema("TABLES");

foreach(DataRow dr in dt.Rows)
{
   SelectTable.Add(dr[2].ToString());
} 

But there are many tables my List. How to get only my Table name?

ASh
  • 34,632
  • 9
  • 60
  • 82

0 Answers0