欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

能说明一下GETROWS的用法吗?

程序员文章站 2022-03-10 22:42:26
 举例如下:          &...

 举例如下:
    <html>
    <head>
    <title>精彩春风之getrows用法示例</title>
    </head>
    <body bgcolor=ffffff text=000000>
    <%
    set cn = server.createobject("adodb.connection")
    cn.open application("guestdsn")
    sql = "select * from authors"
    set rs = cn.execute(sql)
    ary = rs.getrows(10)
    rs.close
    cn.close
    %>
    <p>
    <table border=1>
    <%
    nrows = ubound( ary, 2 )
    for row = 0 to nrows %>
    <tr>
    <% for col = 0 to ubound( ary, 1 ) %>
    <td><%= ary( col, row ) %> </td>
    <% next %>
    </tr>
    <% next %>
    </table>
    </html>