asp中如何将从数据库读出的内容赋给某个变量

2024-12-31 18:56:24
推荐回答(2个)
回答1:

rsgetinfo.open "Select * From info Where id=1",conn,1,1
if not rsgetinfo.eof then
n = rsgetinfo("name")
end if

回答2:

n=rsgetinfo("name")