Introduction - If you have any usage issues, please Google them yourself
C# Gets Access database table, the following code: of the OleDbConnection conn = new OleDbConnection (connectionAccessString) // connectionAccessString the connection string conn.Open () DataTable dt = conn.GetOleDbSchemaTable (OleDbSchemaGuid.Tables, new object [] {null, null, null, " TABLE" }) conn.Close () such DataTable is the database tables and views.