devxlogo

Retrieve Table Names From an Access Database

Question:
How do I retrieve all the table names from an Access database using ASP?

Answer:

Make sure you have an ODBC DSN to point to your database. Then use this code to output all the tables in the database:

' -- Declare variablesDim objConn, objRS' -- Declare constantsConst adSchemaTables = 20' -- create objectsSet objConn = Server.CreateObject("ADODB.Connection")set objRS = Server.CreateObject("ADODB.Recordset")' -- Open the connection: replace values with ' -- your system's valuesobjConn.Open "DSNName", "UserID", "Password"' -- Get list of tables - ALL tablesset objRS = objConn.OpenSchema(adSchemaTables)' -- Walk the recordsetDo While Not objRS.EOF		   ' -- output table name and table type   Response.write "Table Name = " & objRS("TABLE_NAME") & " Table Type = " & objRS("TABLE_TYPE") & "
" ' -- next record objRS.MoveNextLoop' -- Close all objectsobjRS.Closeset objRS = NothingobjConn.Closeset objConn = Nothing

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.