I need to know which tables are in an Access database. The closest I can get is :
Dim schemaTable As DataTable = Cn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, New Object() {Nothing, Nothing, Nothing, "TABLE"})
I do not know however how to extract the table names from this. I also need to know which fields (columns) are in a certain table once I have its name.
Thanks
PK Odendaal
Dim schemaTable As DataTable = Cn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, New Object() {Nothing, Nothing, Nothing, "TABLE"})
I do not know however how to extract the table names from this. I also need to know which fields (columns) are in a certain table once I have its name.
Thanks
PK Odendaal