请教:ASP中,如果将数据库中的数据赋值到一个数组中??

如题
2025年01月07日 07:32
有1个网友回答
网友(1):

连接数据库,连接表aa,要将aa表中bb字段的所有记录添加到数组myarr()中,用for循环:

'rs是记录集

for i=1 to rs.recordcount
if not rs.eof then
myarr(i-1)=rs("bb")
end if
if not rs.eof then rs.movenext
next