try..catch 然后回滚.net c# Web 应用程序中已运行的存储产品

发布于 2024-11-06 06:22:48 字数 203 浏览 0 评论 0原文

有谁知道,如何在 .net c# 中回滚 try...catch 中已运行的存储产品?

示例:

如果我需要运行 2 个存储过程,则创建 2 个函数来运行每个存储的产品,并且这些函数将在 try...catch 内调用,第一个存储的产品成功运行,但是第二个存储的产品运行产品出现错误并超时。在这种情况下,有什么方法可以回滚 .net c# 中第一个存储的产品吗?

Does anyone know, how can I rollback the already run stored prod inside try...catch in .net c#?

Example:

If I have 2 stored proc need to be run, 2 function is created to run each of the stored prod, and those function will be call inside the try...catch, the 1st stored prod run successfully, however the 2nd stored prod having an error and timeout. In this case, any way I can rollback the 1st stored prod in my .net c#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多孤肩上扛 2024-11-13 06:22:48

看看

private static void DemoFunc() 
   {
      SqlConnection conn = new SqlConnection("");//conection string here
      SqlTransaction transaction;
      SqlCommand cmd;

      conn.Open();
      transaction = conn.BeginTransaction();
      try 
      {
         cmd = new SqlCommand("MySP1", conn, transaction);
         cmd.CommandType = CommandType.StoredProcedure;
         cmd.ExecuteNonQuery();

         cmd = new SqlCommand("MySP2", conn, transaction);
         cmd.CommandType = CommandType.StoredProcedure;
         cmd.ExecuteNonQuery();
         transaction.Commit();
      } 
      catch (SqlException sqlError) 
      {
         transaction.Rollback();
      }
      conn.Close();
   }

希望这有帮助。

Have a look at

private static void DemoFunc() 
   {
      SqlConnection conn = new SqlConnection("");//conection string here
      SqlTransaction transaction;
      SqlCommand cmd;

      conn.Open();
      transaction = conn.BeginTransaction();
      try 
      {
         cmd = new SqlCommand("MySP1", conn, transaction);
         cmd.CommandType = CommandType.StoredProcedure;
         cmd.ExecuteNonQuery();

         cmd = new SqlCommand("MySP2", conn, transaction);
         cmd.CommandType = CommandType.StoredProcedure;
         cmd.ExecuteNonQuery();
         transaction.Commit();
      } 
      catch (SqlException sqlError) 
      {
         transaction.Rollback();
      }
      conn.Close();
   }

Hope this help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文