zoukankan      html  css  js  c++  java
  • 实现事务处理.


            
    /// <summary>
            
    /// 执行多条SQL语句,实现数据库事务。
            
    /// </summary>
            
    /// <param name="SQLStringList">多条SQL语句</param>        

            public static void ExecuteTransaction(ArrayList SQLStringList)
            
    {
                
    using (SqlConnection conn = new SqlConnection(connectionString))
                
    {
                    conn.Open();
                    SqlCommand cmd 
    = new SqlCommand();
                    cmd.Connection
    =conn;                
                    SqlTransaction tx
    =conn.BeginTransaction();            
                    cmd.Transaction
    =tx;                
                    
    try
                    
    {           
                        
    for(int n=0;n<SQLStringList.Count;n++)
                        
    {
                            
    string strsql=SQLStringList[n].ToString();
                            
    if (strsql.Trim().Length>1)
                            
    {
                                cmd.CommandText
    =strsql;
                                cmd.ExecuteNonQuery();
                            }

                        }
                                            
                        tx.Commit();                    
                    }

                    
    catch(System.Data.SqlClient.SqlException E)
                    
    {        
                        tx.Rollback();
                        
    throw new Exception(E.Message);
                    }

                }

            }
     
  • 相关阅读:
    null和undefined的区别
    百度小程序组件引用问题
    hbase优化操作与建议
    Hbase Rowkey设计原则
    kafka容器报内存不足异常(failed; error='Cannot allocate memory' (errno=12))
    Hbase安装
    四、hive安装
    一、linux安装mysql
    三、hadoop、yarn安装配置
    linux下磁盘进行分区、文件系统创建、挂载和卸载
  • 原文地址:https://www.cnblogs.com/xiaotuni/p/2365749.html
Copyright © 2011-2022 走看看