快速业务通道

MSSQL数据库嵌套存储过程的事务控制

作者 佚名技术 来源 数据库编程 浏览 发布时间 2012-03-22
  在MSSQL规范中,支持事务嵌套,不过在嵌套调用子存储过程时,要回滚事务,需把@@error传给最外层事务。举例如下:

drop table testtb
go
create table testtb
(
id int,name varchar(2)
)
go
--子过程
drop PRoc proc_insert_sub
go
create proc proc_insert_sub
@errResult int out--返回错误值
as begin
declare @errsum int
declare @transname varchar(20)
set @transname=''subtran''
set @errsum=0
--正确数据
    insert testtb values(1,''00'')
set @errsum=@errsum+@@error
--错误数据
insert testtb values(2,''222'')
set @errsum=@errsum+@@error
--正确数据
insert testtb values(1,''11'')
set @errsum=@errsum+@@error
set @errResult=@errsum
end
go

--主过程
drop proc proc_insert
go
create proc proc_insert
as begin
declare @errsum int
declare @errsum1 int

set @errsum=0
set @errsum1=0
  begin tran
  exec proc_insert_sub @errsum1 out
  print @errsum1
  set @errsum=@errsum+@errsum1
   print @errsum
print @@trancount
  if @errsum=0
commit tran
  else
ROLLBACK TRANSACTION   

end
go

/*执行
exec proc_insert
select * from testtb
*/

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号