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?
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?