In SQL you can use
SELECT * FROM INFORMATION_SCHEMA.TABLES
etc to get information about the database structure. I need to know how to achieve the same thing for an Access database.
In SQL you can use
SELECT * FROM INFORMATION_SCHEMA.TABLES
etc to get information about the database structure. I need to know how to achieve the same thing for an Access database.
The equivalent operation can be accomplished using
OleDbConnection.GetOleDbSchemaTable() method.
see http://support.microsoft.com/kb/309488 for more information