请教一次插入多条数据库
item_name=replace(item_name," ","")
pz_tz=Replace(pz_tz," ","")
aa=split(item_name,",")
bb=split(pz_tz,",")
//for i=0 to ubound(aa)
//response.write(aa(i)&"<br>")
//response.write(bb(i)&"<br>")
//next 这里输出是这样的
789
10
上面二个对应
456
20
上面二个对应
123
30
上面二个对应
现在的问题是 这样循环只能 把第一个789 10 进入数据库 3次 不是 一条进如一次的效果
for j=0 to ubound(aa)
Call opendatabase()
set rs=Server.CreateObject("adodb.recordset")
sql1="insert into ld_pz values ('"&aa(i)&"','"&Serial_number&"','"&pz_time&"','"&bb(i)&"','"&pz_wh&"','"&pz_tg&"','"&File1&"','"&up_explain&"')"
Conn.Execute(sql1)
next
Response.Redirect("ld_pz1.asp")
Call CloseDatabase()