标题:asp连接ACCESS数据库,读取前四条数据不能读出
只看楼主
CYCcaoyanchu
Rank: 2
等 级:论坛游民
帖 子:21
专家分:12
注 册:2012-7-9
结帖率:80%
已结贴  问题点数:5 回复次数:1 
asp连接ACCESS数据库,读取前四条数据不能读出
<%

       set rs = server.CreateObject("adodb.recordset")

     sql = "select top 4 title,shijian from news order by id desc"

     rs.open sql,conn,1,1

     %>

              <li>

                <dd><a href="#"><%=rs("title")%></a></dd>

                <dt><%=rs("shijian")%></dt>

              </li>

              <%

     rs.close

     conn.close

     set rs = nothing

     set conn = nothing

    %>

这个只能读取一条,我在中间加上 if not rs.eof then 这段代码和

rs.movenext

     loop

这段代码又要报错!!!
搜索更多相关主题的帖子: sql shijian nothing title 
2012-07-14 14:34
xmlz
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:5
帖 子:294
专家分:1392
注 册:2010-8-29
得分:5 
4条记录都取出来了
只是要循环输出
do while not rs.eof
...
rs.movenext
loop
2012-07-14 14:55



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-373372-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.291160 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved