zoukankan      html  css  js  c++  java
  • asp.net sql事务 枫

     using (SqlConnection connection = new SqlConnection(SqlHelper.ConnectionStringLocalTransaction))       

    {

     connection.Open();

    SqlCommand command = connection.CreateCommand();

    SqlTransaction transaction;           

    transaction = connection.BeginTransaction("SampleTransaction");           

    command.Connection = connection;           

    command.Transaction = transaction;

     try           

    {               

    command.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, ''Description'')";                command.ExecuteNonQuery();               

    command.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, ''Description'')";                command.ExecuteNonQuery();                // Attempt to commit the transaction.               

    transaction.Commit();                          

    }           

    catch (Exception ex)           

    {               

    try               

    {                   

    transaction.Rollback();               

    }               

    catch (Exception ex2)               

    {                   

    //Console.WriteLine("Rollback Exception Type: {0}", ex2.GetType());                   

    //Console.WriteLine("  Message: {0}", ex2.Message);               

    }           

    }       

    }

  • 相关阅读:
    PageHelper 空指针异常
    ajax提交因参数超长导致接收参数为空问题解决
    Vue入门:Vue项目创建及启动
    Vue入门:Vue环境安装
    程序部署到服务器服务无法启动问题
    sqlServer区分大小写查询
    按下回车默认提交form表单问题
    MyEclipse常用快捷键
    基于JAX-WS的webService开发实例
    ie8下new Date()指定时间
  • 原文地址:https://www.cnblogs.com/mrray/p/2049632.html
Copyright © 2011-2022 走看看