Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim aaTables
dim adoxconn
dim x
dim y
set adoxconn = server.createobject("ADOX.Catalog")
adoxconn.activeconnection = conn
'*** The Following is for Debugging ONLY!!! ***
for each x in adoxconn.tables
if(x.type="TABLE")then
response.write("<hr><p><b><u>" & x.name & "</u></b></p>")
for each y in x.columns
response.write("<p><b>" & y.name & "</b> Type=" & y.type & " size=" & y.definedsize & "</p>")
next
end if
next
set adoxconn = Nothing