Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q3006 How do I get a list of tables contained in my Microsoft Access database?

irt.org | Knowledge Base | ColdFusion | Q3006 [ previous next ]

Q3006 How do I get a list of tables contained in my Microsoft Access database?

Actually, you can do this with some simple SQL. The following query returns an alphabetically-sorted list of tables contained in your Microsoft Access database.

<cfquery datasource="myDatasource" name="GetTables">
SELECT MSysObjects.Name FROM MSysObjects
WHERE (((MSysObjects.Flags)=0) AND ((MSysObjects.Type)=1))
ORDER BY MSysObjects.Name
</cfquery>

Feedback on 'Q3006 How do I get a list of tables contained in my Microsoft Access database?'


Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.