• 在事务中执行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();  
                    }  
                }  
            }
  • 相关阅读:
    windows权限维持
    pocsuite3检测工具 编写poc
    php异或免杀
    python 多线程ftp爆破
    python ip查询 whois查询 # CDN查询# 子域名查询# 端口扫描
    python src批量爬取
    qykcms 审计
    dedecms审计
    EasySNS 审计
    zzcms审计
  • 原文地址:https://www.cnblogs.com/yanergui/p/5014297.html
Copyright © 2020-2023  润新知