Transactionscope回滚

时间:2014-06-27 01:09:41

标签: c# transactions transactionscope

我在主要方法中有一个方法。如果父方法失败,我需要子方法能够回滚。这两个数据连接使用不同的服务器。在我添加事务范围之前,它们运行良好。但是当我将它们绑在一起时,子方法会中止。

编辑:错误消息:已禁用分布式事务管理器(MSDTC)的网络访问。请使用组件服务管理工具在MSDTC的安全配置中启用DTC以进行网络访问。

public static void LoopStudent() 
{
  try 
  {
    using(TransactionScope scope = new TransactionScope()) 
    {
      String connString = ConfigurationManager.AppSettings["DBConnection"];
      using(SqlConnection webConn = new SqlConnection(connString)) 
      {
        webConn.Open();
        String sql = "select * from students";
        using(SqlCommand webComm = new SqlCommand(sql, webConn)) 
        {
          using(SqlDataReader webReader = webComm.ExecuteReader()) 
          {

            if (webReader.HasRows) 
            {
              while (webReader.Read()) 
              {
                int i = GetNextId();
              }
            } 
            else 
              Console.WriteLine("wrong");
          }
        }
      }

      scope.Complete();
    }
  }
  catch (Exception ex) 
  {
    Console.WriteLine("Error " + ex.Message);
  }

} //End LoopThroughCart         

public static int GetNextId(String str) 
{
  int nextId = 0;
  String connString = ConfigurationManager.AppSettings["SecondDBConnection"];
  try 
  {
    using(TransactionScope scope = new TransactionScope()) 
    {
      using(SqlConnection webConn = new SqlConnection(connString)) 
      {
        webConn.Open();
        using(SqlCommand webComm = new SqlCommand("GetNextId", webConn)) 
        {
          //do things
        }
      }
      scope.Complete();
    }
  } 
  catch (TransactionAbortedException ex) 
  {
    Console.WriteLine("TransactionAbortedException Message: {0}", ex.Message);
  } 
  catch (ApplicationException ex) 
  {
    Console.WriteLine("ApplicationException Message: {0}", ex.Message);
  }
  return nextId;
} //End GetNextId

1 个答案:

答案 0 :(得分:0)

如果您没有在内部方法中使用RequireNew,那么如果父方法无法提交事务,则内部方法将自动回滚。

你得到什么错误?