I know this can be done but can't find the code wherre I did it or remember how...I am trying to list all the tables in an access db to a web page...anyone help me out here?
The hidden system table MSysObjects contains the name of all of the tables in the database. To view this table go to
Tools>Options Then select the view tab and check the Hidden Objects and System Objects text box. You can run the following SQL Statment against you db to get the table names
SELECT name from MSysObjects WHERE type = 1 AND flags = 0;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.