zoukankan      html  css  js  c++  java
  • 数据库操作中使用事务进行提速

     //执行多条语句,实现事务。

            public  void ExecuteSqlTran(ArrayList SQLStringList)
            {
             
                SqlConnection cn = this.getcon();
                cn.Open();
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = cn;
                SqlTransaction tx = cn.BeginTransaction();
                cmd.Transaction = tx;
                try
                {
                    for (int i = 0; i < SQLStringList.Count; i++)
                    {
                        string strSQL = SQLStringList[i].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);
                }

            }

  • 相关阅读:
    list, tuple, dict, set的用法总结
    函数的参数
    常用库函数
    Postman 常用测试结果验证的方法
    Loadrunner 使用代理录制脚本
    POSTMAN脚本录制
    Fiddler模拟post四种请求数据
    Python函数修饰符@的使用
    robot framework集成Jenkins环境
    python的位置参数、默认参数、关键字参数、可变参数区别
  • 原文地址:https://www.cnblogs.com/quietwalk/p/1722360.html
Copyright © 2011-2022 走看看