asp 数据库批量插入
forn=Lbound(arry_stu)toUbound(arry_stu)Step1strsql="select*fromtablewherename='"+arry...
for n= Lbound(arry_stu) to Ubound(arry_stu) Step 1
strsql="select * from table where name='"+arry_stu(n)+"'"
rs.open strsql,con,1,3
if rs.eof then
rs.addnew
rs("name")=arry_stu(n)
rs.update‘想插入所有不重复的,在更新,可以吗
response.Write("t")
else
response.Write("f")
end if
rs.close
Next
怎样才可以一次性更新来提高效率 展开
strsql="select * from table where name='"+arry_stu(n)+"'"
rs.open strsql,con,1,3
if rs.eof then
rs.addnew
rs("name")=arry_stu(n)
rs.update‘想插入所有不重复的,在更新,可以吗
response.Write("t")
else
response.Write("f")
end if
rs.close
Next
怎样才可以一次性更新来提高效率 展开
1个回答
2015-06-27
展开全部
批量添加数据
for i=1 to Request.form("Num") '从1到NUM NUM是数量
randomize
MZ=Int((57184629*rnd)) '批量添加信息名字要随机生成.不能手工输入.
set rs=server.createobject("adodb.recordset")
rs.open "select * from 表",conn,1,3
rs.addnew
rs("mz")=MZ'MZ是名字
rs.update
rs.close
next
for i=1 to Request.form("Num") '从1到NUM NUM是数量
randomize
MZ=Int((57184629*rnd)) '批量添加信息名字要随机生成.不能手工输入.
set rs=server.createobject("adodb.recordset")
rs.open "select * from 表",conn,1,3
rs.addnew
rs("mz")=MZ'MZ是名字
rs.update
rs.close
next
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询