ASP - access database
-
I use my ASP page to communicate with my access database. Is there any way to find the list of 'tables' in my access database from ASP or using jscript?? I was born intelligent
Education ruined me!. -
I use my ASP page to communicate with my access database. Is there any way to find the list of 'tables' in my access database from ASP or using jscript?? I was born intelligent
Education ruined me!.I've found the following example. Hope it helps you Michela <% conn.Open strconnection set rs = conn.OpenSchema(maxTable) ' maxTable=20 for me %> <% do while not rs.eof if rs("table_type") = "TABLE" then %> <% end if rs.movenext loop rs.close %>
»
Tables
Table Name
<%=rs("table_name")%>
-
I've found the following example. Hope it helps you Michela <% conn.Open strconnection set rs = conn.OpenSchema(maxTable) ' maxTable=20 for me %> <% do while not rs.eof if rs("table_type") = "TABLE" then %> <% end if rs.movenext loop rs.close %>
»
Tables
Table Name
<%=rs("table_name")%>
Thanks.... Will give a try on it!! I was born intelligent
Education ruined me!.