请教:Connection对象. BeginTrans数据库事务处理怎么写,能给个实例并每行解释下
初学者等待!!!我的QQ1192742894
on error resume next
conn.BeginTrans '启动事务
你的一系列操作
……
……
if err <> 0 then
conn.RollbackTrans '操作出错,事务回滚
response.write 操作出错。。。
else
'操作成功,事务提交
response.write 操作成功!
end if