C#.net事务处理代码

简介: public   void   RunSqlTransaction(string   myConnString)       {             SqlConnection   myConnection   =   new   SqlConnection(myConnString);             myConnection.
public   void   RunSqlTransaction(string   myConnString)  
    {  
          SqlConnection   myConnection   =   new   SqlConnection(myConnString);  
          myConnection.Open();  
   
          SqlCommand   myCommand   =   myConnection.CreateCommand();  
          SqlTransaction   myTrans;  
   
          //   Start   a   local   transaction  
          myTrans   =   myConnection.BeginTransaction("SampleTransaction");  
          //   Must   assign   both   transaction   object   and   connection  
          //   to   Command   object   for   a   pending   local   transaction  
          myCommand.Connection   =   myConnection;  
          myCommand.Transaction   =   myTrans;  
   
          try  
          {  
              myCommand.CommandText   =   "Insert   into   Region   (RegionID,   RegionDescription)   VALUES   (100,   'Description')";  
              myCommand.ExecuteNonQuery();  
              myCommand.CommandText   =   "Insert   into   Region   (RegionID,   RegionDescription)   VALUES   (101,   'Description')";  
              myCommand.ExecuteNonQuery();  
              myTrans.Commit();  
              Console.WriteLine("Both   records   are   written   to   database.");  
          }  
          catch(Exception   e)  
          {  
              try  
              {  
                  myTrans.Rollback("SampleTransaction");  
              }  
              catch   (SqlException   ex)  
              {  
                  if   (myTrans.Connection   !=   null)  
                  {  
                      Console.WriteLine("An   exception   of   type   "   +   ex.GetType()   +  
                                                          "   was   encountered   while   attempting   to   roll   back   the   transaction.");  
                  }  
              }  
           
              Console.WriteLine("An   exception   of   type   "   +   e.GetType()   +  
                                                  "   was   encountered   while   inserting   the   data.");  
              Console.WriteLine("Neither   record   was   written   to   database.");  
          }  
          finally    
          {  
              myConnection.Close();  
          }  
   
目录
相关文章
|
11天前
|
开发框架 搜索推荐 算法
一个包含了 50+ C#/.NET编程技巧实战练习教程
一个包含了 50+ C#/.NET编程技巧实战练习教程
65 18
|
11天前
|
算法 Java 测试技术
使用 BenchmarkDotNet 对 .NET 代码进行性能基准测试
使用 BenchmarkDotNet 对 .NET 代码进行性能基准测试
41 13
|
11天前
|
缓存 算法 安全
精选10款C#/.NET开发必备类库(含使用教程),工作效率提升利器!
精选10款C#/.NET开发必备类库(含使用教程),工作效率提升利器!
45 12
|
9天前
|
开发框架 人工智能 .NET
C#/.NET/.NET Core拾遗补漏合集(24年12月更新)
C#/.NET/.NET Core拾遗补漏合集(24年12月更新)
|
9天前
|
开发框架 算法 .NET
C#/.NET/.NET Core技术前沿周刊 | 第 15 期(2024年11.25-11.30)
C#/.NET/.NET Core技术前沿周刊 | 第 15 期(2024年11.25-11.30)
|
9天前
|
开发框架 Cloud Native .NET
C#/.NET/.NET Core技术前沿周刊 | 第 16 期(2024年12.01-12.08)
C#/.NET/.NET Core技术前沿周刊 | 第 16 期(2024年12.01-12.08)
|
24天前
|
开发框架 监控 .NET
C#进阶-ASP.NET WebForms调用ASMX的WebService接口
通过本文的介绍,希望您能深入理解并掌握ASP.NET WebForms中调用ASMX WebService接口的方法和技巧,并在实际项目中灵活运用这些技术,提高开发效率和应用性能。
41 5
|
1月前
|
算法 Java 测试技术
Benchmark.NET:让 C# 测试程序性能变得既酷又简单
Benchmark.NET是一款专为 .NET 平台设计的性能基准测试框架,它可以帮助你测量代码的执行时间、内存使用情况等性能指标。它就像是你代码的 "健身教练",帮助你找到瓶颈,优化性能,让你的应用跑得更快、更稳!希望这个小教程能让你在追求高性能的路上越走越远,享受编程带来的无限乐趣!
99 13
|
1月前
|
开发框架 .NET PHP
ASP.NET Web Pages - 添加 Razor 代码
ASP.NET Web Pages 使用 Razor 标记添加服务器端代码,支持 C# 和 Visual Basic。Razor 语法简洁易学,类似于 ASP 和 PHP。例如,在网页中加入 `@DateTime.Now` 可以实时显示当前时间。
|
2月前
|
数据库连接 数据库 C#
Windows下C# 通过ADO.NET方式连接南大通用GBase 8s数据库(上)
Windows下C# 通过ADO.NET方式连接南大通用GBase 8s数据库(上)