Greetings,
I got the SQL for returning a list of tables in an access 2000 database from another forum, But I am unsure of how to execute it in an ASP page.
The SQL is:
SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],4) <> "Msys"
AND (MSysObjects.Type)=1 ORDER BY MSysObjects.Name
Do I execute this by creating a Recordset?
Server.CreateObject("ADODB.Recordset"
Command?
Server.CreateObject("ADODB.Command"
;
or What?
Thank You for any help
I got the SQL for returning a list of tables in an access 2000 database from another forum, But I am unsure of how to execute it in an ASP page.
The SQL is:
SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],4) <> "Msys"
Do I execute this by creating a Recordset?
Server.CreateObject("ADODB.Recordset"
Command?
Server.CreateObject("ADODB.Command"
or What?
Thank You for any help