zoukankan      html  css  js  c++  java
  • 在事务中执行sql语句

    1. public static void ExecuteSqlWithGoUseTran(String sql)  
            {  
                using (SqlConnection conn = new SqlConnection(connectionString))  
                {  
                    conn.Open();  
                    SqlCommand cmd = new SqlCommand();  
                    cmd.Connection = conn;  
                    SqlTransaction tx = conn.BeginTransaction();  
                    cmd.Transaction = tx;  
                    try  
                    {  
                        //注: 此处以 换行_后面带0到多个空格_再后面是go 来分割字符串  
                        String[] sqlArr = Regex.Split(sql.Trim(), " \s*go", RegexOptions.IgnoreCase);    
                        foreach (string strsql in sqlArr)  
                        {  
                            if (strsql.Trim().Length > 1 && strsql.Trim() != " ")  
                            {  
                                cmd.CommandText = strsql;  
                                cmd.ExecuteNonQuery();  
                            }  
                        }  
                        tx.Commit();  
                    }  
                    catch (System.Data.SqlClient.SqlException E)  
                    {  
                        tx.Rollback();  
                        throw new Exception(E.Message);  
                    }  
                    finally  
                    {  
                        conn.Close();  
                    }  
                }  
            }
  • 相关阅读:
    List集合
    ArrayList_toArray
    Collection集合基础知识
    Array类的使用
    16.10
    16.9
    16.8
    16.7
    16.6
    16.5
  • 原文地址:https://www.cnblogs.com/yanergui/p/5014297.html
Copyright © 2011-2022 走看看