所以盡量最少使用select *語句,而使用明確的字段名稱,如: Select cn_name,cn_pwd from [data_table] 2,使用rs(0)比rs(filename)更快 Set rs=conn.Execute("Select cn_name,cn_pwd from [data_table]") 記錄集rs()里面可以寫字段名(字符型),或者字段索引號(數(shù)字),它代表字段列表中第幾個字段。比如: rs(0)就表示rs("cn_name") rs(1)表示rs("cn_pwd")
3,使用記錄集rs值前,將其賦值給變量 % Set rs=conn.Execute("Select cn_name,cn_pwd from [data_table] where cn_id=1") if not rs.eof then do while not rs.eof cn_name = rs(0) ' 把rs值賦給變量 cn_pwd = rs(1) ' ... 使用變量處理工作 rs.movenext loop end if rs.close Set rs = Nothing %>