码迷,mamicode.com
首页 > 数据库 > 详细

sql事物

时间:2017-10-11 13:00:17      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:line   set   回滚事务   int   port   val   import   value   mic   

declare   @iErrorCount   int 
set @iErrorCount = 0
begin tran Tran1
   insert into t1(Id, c1) values(1,1)
    set @iErrorCount=@iErrorCount+@@error
 
   insert into t1(Id, c1) values(XX2,2)
    set @iErrorCount=@iErrorCount+@@error
 
if @iErrorCount=0 
begin   
    COMMIT TRAN Tran1  --执行事务
end 
else   
begin   
    ROLLBACK TRAN Tran1  --回滚事务
end

 

declare   @iErrorCount   int 
set @iErrorCount = 0
begin tran Tran1
   insert into t1(Id, c1) values(1,‘1‘)
    set @iErrorCount=@iErrorCount+@@error
 
   insert into t1(Id, c1) values(‘XX2‘,‘2‘)
    set @iErrorCount=@iErrorCount+@@error
 
if @iErrorCount=0 
begin   
    COMMIT TRAN Tran1  --执行事务
end 
else   
begin   
    ROLLBACK TRAN Tran1  --回滚事务
end
 
 

sql事物

标签:line   set   回滚事务   int   port   val   import   value   mic   

原文地址:http://www.cnblogs.com/mrzhoushare/p/7649767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!