欢迎光临
我们一直在努力

如何显示一个数据库里的所有表(ACCESS)-ASP教程,数据库相关

建站超值云服务器,限时71元/月

使用这个过程的前提条件是要在调用前写好数据库连接的代码。

一般为<!–#include file="conn.asp"–>

<%sub schema_show()%>

   <table  border="1" cellspacing="0" cellpadding="3" style=’border-collapse:collapse;’ bordercolor="#006699">

   <%

   set rs=conn.openschema(20) 

   rs.movefirst

   %> 

     <tr>

   <%for i=0 to rs.fields.count-1%>  

    <td><%=rs.fields(i).name%></td>

   <%next%> 

     </tr>

   <%do while not rs.eof%>  

     <tr>

   <%for i=0 to rs.fields.count-1%>  

    <td>

     <%if rs.fields(i).name="table_name" and (rs("table_type")="table" or rs("table_type")="view") then%>

     <a href="?table=<%=rs(i)%>"><%=rs(i)%></a>

     <%else%>

     <%=rs(i)%>

     <%end if%>

    </td>

   <%next%> 

     </tr>

   <%rs.movenext

   loop

   rs.close

   set rs=nothing%>  

   </table>   

<%end sub%>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何显示一个数据库里的所有表(ACCESS)-ASP教程,数据库相关
分享到: 更多 (0)