TA的每日心情 | 奋斗 2014-12-18 10:31 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
方法如下:
'问题一:
'使用move方法把记录移动到指定行,然后就可以取到该行数据,代码如下:
Set res = createobject("ADODB.Recordset")
res.Open"select * from login where id = 135",conn
res.move(1) '记录向下移动1行,即:取第2行数据
Print res("loginname")
'若想获取所有行数据,则:
'Do
' If not res.eof Then
' Print res("loginname")
' res.MoveNext
' End If
'loop until res.eof=true '到达最后一条,停止循环
'问题二:
a="login"
res.Open"select * from "+a+" where id = 135",conn
'或
'a="login"
'res.Open"select * from "&a&" where id = 135",conn
[ 本帖最后由 feiyunkai 于 2010-7-26 18:31 编辑 ] |
|