Tramite activeConnection leggo tutti i nomi dei campi presenti del MDB.
Come si fa a leggere anche il tipo di campo e la dimensione?

Vi allego lo script.

Grazie

codice:
DataBaseName="MyData.mdb"
ConnStr="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/mdb-database/"&DataBaseName)
set adoxConn = CreateObject("ADOX.Catalog") 
set adodbConn = CreateObject("ADODB.Connection") 
adodbConn.open ConnStr 
adoxConn.activeConnection = adodbConn
response.write ""&DataBaseName&"
"
for each table in adoxConn.tables 
   if table.type="TABLE" then 
      response.write table.name & table.type &"
" 
   end if 
next 
adodbConn.close: set adodbConn = nothing 
set adoxConn = nothing