dimConnasnewadodb.connection’asp中是setconn=createobject(“adodb.connection”)
dimrsasnewadodb.recordset’类似于你的setrs=createobject(“adodb.recordset”)
sql=sql语句
rs.opensql,conn’打开记录集,后面可跟参数,指定参数不同游标类型也不相同
ifnotrs.eofthen’判断SQL语句是否存在查询到的记录
ifisnull(rs(字段))=falsethen’确定指定字段不为空
变量=rs(字段)’获得字段内容
endif
endif
rs.close’关闭记录集
conn.close’关闭数据库连接