Hello friends,
I have to develop an application which will list the access database tables along with the count of the rows in front of each table.
But How to achieve this task as I am using getOledbSchemaTable method of connection object but getting unnecessary columns on my datagrid.

DataTable dt = oconn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
dataGridView1.DataSource = dt;


Please give me solution .
Thanks in advance.