asp getrows问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp getrows问题相关的知识,希望对你有一定的参考价值。

dim sql,rs,uinfo()
sql="select * from users where ucode="&request("username")&" and upass='"&request("password")&"'"
set rs=Conn.Execute(sql)
‘uinfo=rs.GetRows()
if not rs.eof then
response.write rs("uname")
else
response.write "用户名或密码错误,请重新输入!"
end if
为什么 把‘uinfo=rs.GetRows()去掉注释就出错了,内面输出用户名或密码错误,请重新输入!,也就是说我在uinfo=rs.GetRows()这一行出错了,为什么???

参考技术A 把 uinfo=rs.GetRows() 放到 else 前面。试试。 参考技术B getRows(),默认取得所有记录集,且rs游标会指向取走记录集中最后一条位置的下一条,
显然上面例子 rs.eof = true,

以上是关于asp getrows问题的主要内容,如果未能解决你的问题,请参考以下文章

关于asp getrows方法的使用问题

[ASP]GetRows的用法详解

ASP中getrows()如何获得数组的标题

RecordSet 上的 GetRows 不会存储 Access DB 中的文本列

sheet.getRow(rowIndex);为null_POI导出excel

React AgGrid 服务器端数据源 getRows 仅触发一次,滚动不起作用