Listing tables of database

  • Thread starter Thread starter AnandVishy
  • Start date Start date
Hi,

DataTable schemaTable = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables,
new object[] {null, null,
null, "TABLE"});
where conn is opened OleDbConnection.
 
Back
Top