Asp程序实现数据库ID复制的代码

时间:2021-04-16

Asp 实现数据库ID复制代码:

<%
set conn=server.CreateObject("adodb.connection")
conn.open "driver={sql server};server=localhost;uid=sa;pwd=sa;database=pubs"
on error resume next
set rs=server.CreateObject("adodb.recordset")
sql="select * from jobs order by job_id asc"
conn.begintrans'开始事务
rs.open sql,conn,1,1
if not rs.eof and not rs.bof then
do while not rs.eof
sqlupdate="update jobs set paixu="&rs("job_id")&" where job_id="&rs("job_id")
conn.execute(sqlupdate)
%>
<%
rs.movenext
loop
end if
rs.close
set rs=nothing
if err.number=0 then
conn.committrans'执行事务
Response.Write("执行成功")
else
conn.rollbacktrans'回滚事务
Response.Write(err.description)
end if
%>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章