ibatis.net中的事务处理

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

            try{
               //开始事务
               SqlMap.BeginTransaction();
               //数据库操作
               CountryID = (int)SqlMap.Insert("AddCountry", hash);
               AirportID = (int)SqlMap.Insert("AddAirport", hash);
               //提交事务
               SqlMap.CommitTransaction();
               }
            catch (Exception e)
               {
                //失败回滚
                SqlMap.RollBackTransaction();
               }

 

转载于:https://my.oschina.net/CrazyBoy1024/blog/703348

你可能感兴趣的:(ibatis.net中的事务处理)