浅谈配餐系统中数据库连接打开与关闭

数据库
本文中笔者与我们分享了如何提升C#性能——数据库连接打开与关闭——的经验并在文中附有优化过的DBHelper类。

做程序开发到现在已有三年多的时间了,先不说技术已达到了什么样的一个水平,就对自己熟悉或比较精通的技术等——感觉需要再继续深究或清楚其如何用好(提升性能)的东西还不少[简单的说:就是有些自认为懂的技术,其实未必真懂,了解的可能只是部分或不是合适的用法]。这篇文章要说就是——对程序性能起着很大决定性作用的数据库操作(一般情况下:优化数据库(包括数据库操作),比优化代码对性能提升的效果更显著的多),——数据库连接打开与关闭 的时间和范围。

    以下,以几个问题去阐述本文要说的核心!

   1. 要及时关闭数据库连接?

   ——这个答案,是肯定的,即:要及时关闭数据库连接。无论在你的项目里数据库访问(操作)是否有用连接池,都需要及时关闭数据库连接(ps: 连接池的关闭数据库连接,并不是真正意义上的关闭,而是(通过close()方法)将当前使用的连接放回到连接池中)。但却不要及时关闭数据库连接,why?——答案在第二个问题中,将会做出解答。

   2.数据库连接打开与关闭,(为了确保'连接用时打开用完立即关闭'的原则),要在每次数据库操作时都去打开和关闭连接吗?

   ——在给出解答之前,先看如下代码("配餐系统" 中<食物库>分页查询的方法)   

  1. public static IList GetFoodInfosList(string keyint type, int fid, int sid, string yysZdName, int pageSize, int currentPage, ref int xxCount, ref int pageCount)   
  2.       {   
  3.           List list = new List();   
  4.           xxCount = 0;   
  5.           pageCount = 0;   
  6.  
  7.           //是否需要按营养素排序   
  8.           bool isNeedOrder = false;   
  9.           Dictionary<int, ZhiyiModel.JustNeed.FoodInfo> dictCx = null;  
  10.           Dictionary dictFlName = new Dictionary();  
  11.           string ids = String.Empty;  
  12.           string flId = String.Empty;  
  13.           string flName = String.Empty;  
  14.  
  15.           string fieldList = " id,name,fid,Sid,type,IsSys ";  
  16.           #region 组合where条件  
  17.           //省略  
  18.           #endregion  
  19.  
  20.           OleDbDataReader reader = null;  
  21.           try  
  22.           {  
  23.               DBHelper.OpenCon();  
  24.               //得到信息总条数  
  25.               xxCount = GetFoodInfosXxCount(where);//[*]  
  26.  
  27.               pageCount = FenyeHelper.GetPageCount(xxCount, pageSize);  
  28.                 
  29.               ZhiyiModel.JustNeed.FoodInfo foodinfo = null;  
  30.  
  31.               reader = FenyeHelper.PageView_Reader_Other2("food", fieldList, "id"where""false, pageSize, currentPage, pageCount, xxCount);//[*]  
  32.  
  33.               while (reader.Read())  
  34.               {  
  35.                   foodinfo = new ZhiyiModel.JustNeed.FoodInfo();  
  36.                   foodinfo.Id = (int)reader["id"];  
  37.                   foodinfo.IsSys = (int)reader["IsSys"];  
  38.                   foodinfo.FoodName = reader["name"].ToString();  
  39.                   flId = reader["fid"].ToString();  
  40.                   foodinfo.FirstFl = GetFlName(dictFlName, flId, flName);//[*]  
  41.  
  42.                   flId = reader["Sid"].ToString();  
  43.                   foodinfo.SecondFl = GetFlName(dictFlName, flId, flName);//[*]  
  44.  
  45.                   foodinfo.FoodType = reader["type"].ToString() == "0" ? "原料" : "菜肴";  
  46.                   foodinfo.Heat = YysPropertyService.GetYysInfoByFoodId("heat", foodinfo.Id,"0");//[*]  
  47.                   if (isNeedOrder)  
  48.                   {  
  49.                       dictCx.Add(foodinfo.Id, foodinfo);  
  50.                       ids += string.IsNullOrEmpty(ids) ? foodinfo.Id.ToString() : "," + foodinfo.Id;  
  51.                   }  
  52.                   else 
  53.                       list.Add(foodinfo);  
  54.               }  
  55.  
  56.               #region 按营养素排序  
  57.               if (isNeedOrder && !string.IsNullOrEmpty(ids))  
  58.               {  
  59.                   DBHelper.CloseReader(reader);  
  60.                   //[*]  
  61.                   reader = DBHelper.GetReader_Other2("select foodid from xxxxxxxxxxxxx", CommandType.Text);  
  62.                   int foodId = 0;  
  63.                   list.Clear();  
  64.                   while (reader.Read())  
  65.                   {  
  66.                       foodId = (int)reader["foodid"];  
  67.                       foodinfo = new ZhiyiModel.JustNeed.FoodInfo();  
  68.                       if (!dictCx.TryGetValue(foodId, out foodinfo))  
  69.                           continue;  
  70.                       list.Add(foodinfo);  
  71.                   }  
  72.               }  
  73.               #endregion  
  74.           }  
  75.           catch (Exception ex)  
  76.           {  
  77.               throw ex;  
  78.           }  
  79.           finally  
  80.           {  
  81.               DBHelper.CloseReader(reader);  
  82.               DBHelper.CloseCon();  
  83.               dictCx = null;  
  84.           }  
  85.           return list;  
  86.       }  

大家看后,会发现此方法中,有以下几点值得注意:

    a.有些代码后有 "//[*]“——此用于标识所在行代码是执行数据库操作,方便大家能清楚的知道 try/catch 代码块中有几处数据库(连接)操作

    b.DBHelper.OpenCon();和DBHelper.CloseCon(); ——大家大概可以知道:此try/catch 代码块中只有一次数据库打开和关闭,——事实上也确实只有一次。再看下其中涉及(调用)到的部分方法:

  1. private static string GetFlName(Dictionary dictFlName, string flId, string flName)  
  2.         {  
  3.             flName = string.Empty;  
  4.             if (!string.IsNullOrEmpty(flId) && flId != "0")  
  5.             {  
  6.                 if (!dictFlName.TryGetValue(flId, out flName))  
  7.                 {  
  8.                     flName = ShiwuClassService.GetShiwuClassNameById(flId);  
  9.                     dictFlName.Add(flId, flName);  
  10.                 }  
  11.             }  
  12.             return flName;  
  13.         }  
  14.   ///   
  15.         /// [Notice Conn]  
  16.         ///   
  17.         /// name="id">  
  18.         /// <returns>returns>  
  19.         public static string GetShiwuClassNameById(string id)  
  20.         {  
  21.             object obj = DBHelper.ExecuteScalar_Object_Other(string.Format("select name from xxxx where id={0}",id), CommandType.Text);  
  22.             return obj == null ? "" : obj.ToString();  
  23.         }  
  24.   ///   
  25.         /// 返回***行***列的值[Object]  (此方法需要 手动(即调用OpenCon(); CloseCon();方法)打开和关闭连接)  
  26.         ///   
  27.         /// <returns>returns>  
  28.         public static object ExecuteScalar_Object_Other(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  29.         {  
  30.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  31.             cmd.CommandType = comType;  
  32.             cmd.CommandTimeout = 180;  
  33.             DBHelper.SetParams(cmd, sqlParams);  
  34.             try  
  35.             {  
  36.                 return cmd.ExecuteScalar();  
  37.             }  
  38.             catch (OleDbException ex)  
  39.             {  
  40.                 throw ex;  
  41.             }  
  42.             finally  
  43.             {  
  44.                 //释放资源  
  45.                 DisponseCmd(cmd);  
  46.             }  
  47.         }  

   在 while循环代码块中 有两次GetFlName方法(此方法最终是对ExecuteScalar_Object_Other方法)的调用,这样如果是reader中有20条记录, 并且在ExecuteScalar_Object_Other方法内部(查询)操作开始前打开连接,结束时关闭连接,此while循环代码块执行完——将可能有20*2=40次的数据库连接打开与关闭操作,假设:每次数据库连接打开与关闭操作需要0.1s的时间,那么此while循环代码块将需要至少0.1*40=4s的时间执行,再加上其它的查询或更多更频繁的数据库操作, 效率就可想而知。【这个得回到在此文一开始所说的,“有些东西你以为弄清楚明白了,其实未必”。在之前未做winform开发(确切的说是 没有使用access数据库时),数据库操作方法,都是如下方法([旧DBHelper类中的]:即在方法内部,连接即开即关。也是网上很多通用DBHelper数据库操作类中的写法),因为在项目中用的都是mysql,sqlserver这种大型的数据库, 即使不用连接池,数据量不大的情况下,查询等速度都比access数据库要快的多,那时还感觉自己略作优化过的DBHelper类已经够用了,效果也还不错。但是在做winform"配餐系统"开发时,用的是access数据库,还用之前的DBHelper类,也是做GetFoodInfosList方法中相同的查询操作(当时还没考虑分页),问题就暴露出来了——只查询10条左右的记录,界面却等待了3s左右,结果才(卡)出来。  出现了问题,只能查看代码思考解决问题:数据库操作代码还是之前项目中的DBHelper类中,为什么会查询速度如此之慢呢?后慢慢想明白和知道:access数据库跟mysql,sqlserver等大型的数据库相比,性能差了很多,数据库性能差,而也不考虑换用其它的数据库,只能在代码上做优化,于是修改了DBHelper类,类似于重构了部分方法——以适应不同情况下的需要。】

[旧DBHelper类中的]:

  1. ///   
  2.         /// 返回***行***列的值[Object]  
  3.           ///   
  4.         /// <returns>returns>  
  5.         public static object ExecuteScalar1(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  6.         {  
  7.             OpenCon();  
  8.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  9.             cmd.CommandType = comType;  
  10.             cmd.CommandTimeout = 180;  
  11.             DBHelper.SetParams(cmd, sqlParams);  
  12.             try  
  13.             {  
  14.                 return cmd.ExecuteScalar();  
  15.             }  
  16.             catch (OleDbException ex)  
  17.             {  
  18.                 throw ex;  
  19.             }  
  20.             finally  
  21.             {  
  22.                 //释放资源  
  23.                 DisponseCmd(cmd);  
  24.                 CloseCon();  
  25.             }  
  26.         }  

       好了,到这儿,可以对以上两个问题一起做个答复,阐明此文的关键点:数据库连接的打开和关闭,要在当前可见范围内或代码块中 数据库操作开始前 打开连接,在无需(或者说***一个)数据库操作后 关闭连接,举例:在一个方法或代码块中,如上GetFoodInfosList方法;在一个事件中,如:一个按钮的点击事件中:可能会执行n次数据库 增删改差等操作....

    结束语:应该是***次写这么长的技术文章,写的比较艰难,呵呵...,感觉把自己知道的东西想写的让别人能很容易看懂且不丢失自己想说的,不是一件容易的事。后附的是***的DBHelper类(里面还有一些地方可以或需要优化),希望路过的朋友能多提意见或交流你的看法!

***的DBHelper类:

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;using System.Data.OleDb;using System.Data;  
  4. namespace ZhiyiHelper  
  5. {  
  6.     public partial class DBHelper  
  7.     {  
  8.         /**  
  9.          * 以下的方法需要在调用的可见区域内:手动(即调用OpenCon(); CloseCon();方法)打开和关闭连接  
  10.          * 方法注释中有[Notice Con] 或 [Notice Connection] 或方法名中含有“_Other”,则调用的是以下的方法  
  11.         * */  
  12.         #region 数据库操作方法  
  13.         ///   
  14.         /// 执行增,删,改命令的方法  
  15.         ///   
  16.         /// name="sql">  
  17.         /// <returns>returns>  
  18.         public static int Execute_Other(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  19.         {  
  20.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  21.             cmd.CommandType = commandType;  
  22.             cmd.CommandTimeout = 180;  
  23.             SetParams(cmd, sqlParams);  
  24.              try  
  25.             {  
  26.                 return cmd.ExecuteNonQuery();  
  27.             }  
  28.             catch (OleDbException ex)  
  29.             {  
  30.                 throw ex;  
  31.             }  
  32.             finally  
  33.             {  
  34.                 //释放资源  
  35.                 DisponseCmd(cmd);  
  36.             }  
  37.         }  
  38.         ///   
  39.         /// 返回***行***列的值[Int]  
  40.         ///   
  41.         /// name="sql">  
  42.         /// <returns>returns>  
  43.         public static int ExecuteScalar_Int_Other(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  44.         {  
  45.             object reObj = ExecuteScalar_Object_Other(sql, comType, sqlParams);  
  46.             return reObj == null ? 0 : Convert.ToInt32(reObj);  
  47.         }  
  48.         ///   
  49.         /// 返回***行***列的值[Object]  
  50.         ///   
  51.         /// <returns>returns>  
  52.         public static object ExecuteScalar_Object_Other(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  53.         {  
  54.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  55.             cmd.CommandType = comType;  
  56.             cmd.CommandTimeout = 180;  
  57.             DBHelper.SetParams(cmd, sqlParams);  
  58.             try  
  59.             {  
  60.                 return cmd.ExecuteScalar();  
  61.             }  
  62.             catch (OleDbException ex)  
  63.             {  
  64.                 throw ex;  
  65.             }  
  66.             finally  
  67.             {  
  68.                 //释放资源  
  69.                 DisponseCmd(cmd);  
  70.             }  
  71.         }  
  72.         ///   
  73.         /// 返回OleDbDataReader的方法  
  74.         ///   
  75.         /// name="sql">  
  76.         /// name="commandType">  
  77.         /// name="sqlParams">  
  78.         /// <returns>returns>  
  79.         public static OleDbDataReader GetReader_Other(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  80.         {  
  81.             OleDbDataReader reader = null;  
  82.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  83.             cmd.CommandType = commandType;  
  84.             SetParams(cmd, sqlParams);  
  85.             try  
  86.             {  
  87.                 reader = cmd.ExecuteReader(CommandBehavior.CloseConnection);  
  88.             }  
  89.             catch (Exception ex)  
  90.             {  
  91.                 throw ex;  
  92.             }  
  93.             finally  
  94.             {  
  95.                 //释放资源  
  96.                 DisponseCmd(cmd);  
  97.             }  
  98.             return reader;  
  99.         }  
  100.         ///   
  101.         /// 返回OleDbDataReader的方法 [reader和数据库连接都需要显示关闭]  
  102.         ///   
  103.         /// name="sql">  
  104.         /// name="commandType">  
  105.         /// name="sqlParams">  
  106.         /// <returns>returns>  
  107.         public static OleDbDataReader GetReader_Other2(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  108.         {  
  109.             OleDbDataReader reader = null;  
  110.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  111.             cmd.CommandType = commandType;  
  112.             SetParams(cmd, sqlParams);  
  113.             try  
  114.             {  
  115.                 reader = cmd.ExecuteReader();  
  116.             }  
  117.             catch (Exception ex)  
  118.             {  
  119.                 throw ex;  
  120.             }  
  121.             finally  
  122.             {  
  123.                 //释放资源  
  124.                 DisponseCmd(cmd);  
  125.             }  
  126.             return reader;  
  127.         }  
  128.              ///   
  129.             /// 执行多条SQL语句,实现数据库事务。  
  130.             ///   
  131.             /// name="SQLStringList">多条SQL语句  
  132.         public static void ExecuteSqlTran_Other(List SQLStringList)  
  133.         {  
  134.             if (SQLStringList == null || SQLStringList.Count == 0)  
  135.                 return;  
  136.             OleDbCommand cmd = new OleDbCommand();  
  137.             cmd.Connection = conObject;  
  138.             cmd.CommandType = CommandType.Text;  
  139.             OleDbTransaction tx = conObject.BeginTransaction();  
  140.             cmd.Transaction = tx;  
  141.             try  
  142.             {  
  143.                 string sql = String.Empty;  
  144.                 for (int n = 0; n < SQLStringList.Count; n++)  
  145.                 {  
  146.                     sql = SQLStringList[n];  
  147.                     if (sql.Trim().Length > 1)  
  148.                     {  
  149.                         cmd.CommandText = sql;  
  150.                         cmd.ExecuteNonQuery();  
  151.                     }  
  152.                 }  
  153.                 tx.Commit();  
  154.             }  
  155.             catch (System.Data.OleDb.OleDbException e)  
  156.             {  
  157.                 tx.Rollback();  
  158.                 throw e;  
  159.             }  
  160.             finally  
  161.             {  
  162.                 //释放资源  
  163.                 if (tx != null)  
  164.                 {  
  165.                     tx.Dispose();  
  166.                     tx = null;  
  167.                 }  
  168.                 DisponseCmd(cmd);  
  169.             }  
  170.         }  
  171.         ///   
  172.         /// 关闭和释放数据读取器  
  173.         ///   
  174.         /// name="reader">  
  175.         public static void CloseReader(OleDbDataReader reader)  
  176.         {  
  177.             if (reader != null && reader.IsClosed)  
  178.             {  
  179.                 reader.Dispose();  
  180.                 reader.Close();   
  181.                 reader = null;  
  182.             }  
  183.         }  
  184.         #endregion  
  185.     }  
  186. }  

 

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. using System.Data.OleDb;using System.Data;  
  5. using System.Configuration;  
  6. namespace ZhiyiHelper{  
  7.     public partial class DBHelper  
  8.     {  
  9.         private static string connstr = String.Empty;  
  10.         private static OleDbConnection conObject = null;  
  11.         public DBHelper()  
  12.         {  
  13.                     }  
  14.         #region 基础方法  
  15.         ///   
  16.         /// 获取连接字符串的属性  
  17.         ///   
  18.         private static string Connstr  
  19.         {  
  20.             get  
  21.             {  
  22.                 if (connstr == String.Empty)  
  23.                 {  
  24.                     connstr = ConfigHelper.GetConnectionStringsString("accessConSql");  
  25.                     connstr = GetConnString();  
  26.                 }  
  27.                 return connstr;  
  28.             }  
  29.         }  
  30.         ///   
  31.         /// 得到数据库连接方法  
  32.          ///   
  33.         /// <returns>数据库连接returns>  
  34.         private static void Getconn()  
  35.         {  
  36.             if (conObject == null)  
  37.                 conObject = new OleDbConnection(Connstr);  
  38.         }  
  39.         ///   
  40.         /// 获得并打开数据库连接方法  
  41.         ///   
  42.         /// <returns>returns>  
  43.         public static void OpenCon()  
  44.         {  
  45.             Getconn();  
  46.             if (conObject.State == ConnectionState.Open)  
  47.                 return;  
  48.             if (conObject.State != ConnectionState.Closed)  
  49.                 conObject.Close();  
  50.             conObject.Open();  
  51.         }  
  52.         ///   
  53.         /// 关闭数据库连接方法  
  54.         ///   
  55.         public static void CloseCon()  
  56.         {  
  57.             if (conObject != null && conObject.State != ConnectionState.Closed)  
  58.                 conObject.Close();  
  59.         }  
  60.         #endregion  
  61.         #region 数据库操作方法  
  62.         public static int GetMaxID(string FieldName, string TableName)  
  63.         {  
  64.             string strsql = "select max(" + FieldName + ") from " + TableName;  
  65.             try  
  66.             {  
  67.                 return GetScalar(strsql);  
  68.             }  
  69.             catch (OleDbException ex)  
  70.             {  
  71.                 throw ex;  
  72.              }  
  73.         }  
  74.         ///   
  75.         /// 删除制定表中的一个字段(文本列)  
  76.         ///   
  77.         /// name="colName">  
  78.         /// name="TableName">  
  79.         public static void DelColumn(string colName, string TableName)  
  80.         {  
  81.             if (string.IsNullOrEmpty(colName.Trim()))  
  82.                 return;  
  83.             try  
  84.             {  
  85.                 Execute("alter table ["+TableName+"] drop COLUMN ["+colName+"]");  
  86.             }  
  87.             catch (OleDbException ex)  
  88.             {  
  89.                 throw ex;  
  90.             }  
  91.         }  
  92.         ///   
  93.         /// 在制定表中添加一个字段(文本列)  
  94.         ///   
  95.         /// name="colName">  
  96.         /// name="TableName">  
  97.         public static void AddColumn(string colName, string TableName)  
  98.         {  
  99.             try  
  100.             {  
  101.                 Execute("ALTER TABLE " + TableName + " ADD COLUMN " + colName + " TEXT(100)");  
  102.                 //TEXT不加长度,则为此字段类型的默认***长度  
  103.             }  
  104.             catch (OleDbException ex)  
  105.             {  
  106.                 throw ex;  
  107.             }  
  108.         }  
  109.         ///   
  110.         /// 在制定表中添加一个字段(数字(double)列)  
  111.         ///   
  112.         /// name="colName">  
  113.         /// name="TableName">  
  114.         public static void AddColumn_Double(string colName, string TableName)  
  115.         {  
  116.             try  
  117.             {  
  118.                 Execute("ALTER TABLE " + TableName + " ADD COLUMN " + colName + " Double DEFAULT 0");  
  119.             }  
  120.             catch (OleDbException ex)  
  121.             {  
  122.                 throw ex;  
  123.             }  
  124.         }  
  125.         ///   
  126.         /// 执行增,删,改命令的方法(一) [非存储过程SQL]  
  127.         ///   
  128.         /// name="sql">  
  129.         /// <returns>returns>  
  130.         public static int Execute(string sql)  
  131.         {  
  132.             return Execute(sql, CommandType.Text);  
  133.         }  
  134.         ///   
  135.         /// 执行增,删,改命令的方法(二)  
  136.         ///   
  137.         /// name="sql">  
  138.         /// <returns>returns>  
  139.         public static int Execute(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  140.         {  
  141.             OpenCon();  
  142.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  143.             cmd.CommandType = commandType;  
  144.             cmd.CommandTimeout = 180;  
  145.             SetParams(cmd, sqlParams);  
  146.             try  
  147.             {  
  148.                 return cmd.ExecuteNonQuery();  
  149.             }  
  150.             catch (OleDbException ex)  
  151.             {  
  152.                 throw ex;  
  153.             }  
  154.             finally  
  155.             {  
  156.                 //释放资源  
  157.                 DisponseCmd(cmd);  
  158.                 CloseCon();  
  159.             }  
  160.         }  
  161.         ///   
  162.         /// 执行增,删,改命令的方法  ----重载方法 [存储过程]  
  163.         ///   
  164.         /// name="sql">存储过程名  
  165.         /// name="sqlParams">  
  166.         /// <returns>returns>  
  167.         public static int Execute(string sql, params OleDbParameter[] sqlParams)  
  168.         {  
  169.             return Execute(sql, CommandType.StoredProcedure, sqlParams);  
  170.         }  
  171.         ///   
  172.         /// 返回***行***列的值  
  173.         ///   
  174.         /// name="sql">  
  175.         /// <returns>returns>  
  176.         public static int ExecuteScalar(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  177.         {  
  178.             object reObj = ExecuteScalar1(sql, comType, sqlParams);  
  179.             return reObj == null ? 0 : Convert.ToInt32(reObj);  
  180.         }  
  181.         ///   
  182.         /// 返回***行***列的值----非存储过程SQL查询方法  
  183.         ///   
  184.         /// name="sql">  
  185.         /// name="sqlParams">  
  186.         /// <returns>returns>  
  187.         public static int GetScalar(string sql, params OleDbParameter[] sqlParams)  
  188.         {  
  189.             return ExecuteScalar(sql, CommandType.Text, sqlParams);  
  190.         }  
  191.         ///   
  192.         /// 返回***行***列的值----[存储过程]重载方法  
  193.         ///   
  194.         /// name="sql">存储过程名  
  195.         /// <returns>returns>  
  196.         public static int ExecuteScalar(string sql, params OleDbParameter[] sqlParams)  
  197.         {  
  198.             return ExecuteScalar(sql, CommandType.StoredProcedure, sqlParams);  
  199.         }  
  200.         ///   
  201.         /// 返回***行***列的值[Object]  
  202.         ///   
  203.         /// <returns>returns>  
  204.         public static object ExecuteScalar1(string sql, CommandType comType, params OleDbParameter[] sqlParams)  
  205.         {  
  206.             OpenCon();  
  207.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  208.             cmd.CommandType = comType;  
  209.             cmd.CommandTimeout = 180;  
  210.             DBHelper.SetParams(cmd, sqlParams);  
  211.             try  
  212.             {  
  213.                 return cmd.ExecuteScalar();  
  214.             }  
  215.             catch (OleDbException ex)  
  216.             {  
  217.                 throw ex;  
  218.             }  
  219.             finally  
  220.             {  
  221.                 //释放资源  
  222.                 DisponseCmd(cmd);  
  223.                 CloseCon();  
  224.             }  
  225.         }  
  226.         ///   
  227.         /// 返回***行***列的值----[存储过程]重载方法  
  228.         ///   
  229.         /// name="sql">存储过程名  
  230.         /// <returns>returns>  
  231.         public static Object ExecuteScalar2(string sql, params OleDbParameter[] sqlParams)  
  232.         {  
  233.             return ExecuteScalar1(sql, CommandType.StoredProcedure, sqlParams);  
  234.         }  
  235.         ///   
  236.         /// 执行增,删,改命令的方法----非存储过程SQL查询方法  
  237.         ///   
  238.         /// name="sql">  
  239.         /// name="sqlParams">  
  240.         /// <returns>returns>  
  241.         public static void ExecuteCommand(string sql, params OleDbParameter[] sqlParams)  
  242.         {  
  243.             Execute(sql, CommandType.Text, sqlParams);  
  244.         }  
  245.         ///   
  246.         /// 查询返回数据表的方法---非存储过程SQL查询方法  
  247.         ///   
  248.         /// name="sql">Sql语句  
  249.         /// name="commandType">  
  250.         /// name="sqlParams">  
  251.         /// <returns>returns>  
  252.         public static DataTable GetTable(string sql)  
  253.         {  
  254.             return GetTable(sql, CommandType.Text);  
  255.         }  
  256.         ///   
  257.         /// 查询返回数据表的重载方法  
  258.         ///   
  259.         /// name="sql">  
  260.         /// name="commandType">  
  261.         /// name="sqlParams">  
  262.         /// <returns>returns>  
  263.         public static DataTable GetTable(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  264.         {  
  265.             DataSet dataSet = null;  
  266.             Getconn();  
  267.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  268.             cmd.CommandType = commandType;  
  269.             SetParams(cmd, sqlParams);  
  270.             OleDbDataAdapter adp = new OleDbDataAdapter();  
  271.             adp.SelectCommand = cmd;  
  272.             try  
  273.             {  
  274.                 dataSet = new DataSet();  
  275.                 adp.Fill(dataSet, "table");  
  276.             }  
  277.             catch (Exception ex)  
  278.             {  
  279.                 throw ex;  
  280.             }  
  281.             finally  
  282.             {  
  283.                 //释放资源  
  284.                 DisponseAdp(adp);  
  285.                 DisponseCmd(cmd);  
  286.                 CloseCon();  
  287.             }  
  288.             if (dataSet != null && dataSet.Tables[0] != null)  
  289.                 return dataSet.Tables[0];  
  290.                 return null;   
  291.        }        ///   
  292.         /// 查询返回数据表的重载方法   ---非存储过程SQL  
  293.         ///   
  294.         /// name="sql">  
  295.         /// name="sqlParams">  
  296.         /// <returns>returns>  
  297.         public static DataTable GetTable(string sql, params OleDbParameter[] sqlParams)  
  298.         {  
  299.             return GetTable(sql, CommandType.Text, sqlParams);  
  300.         }  
  301.         ///   
  302.         /// 返回OleDbDataReader的方法  
  303.         ///   
  304.         /// name="sql">  
  305.         /// name="commandType">  
  306.         /// name="sqlParams">  
  307.         /// <returns>returns>  
  308.         public static OleDbDataReader GetReader(string sql, CommandType commandType, params OleDbParameter[] sqlParams)  
  309.         {  
  310.             OleDbDataReader reader = null;  
  311.             OpenCon();  
  312.             OleDbCommand cmd = new OleDbCommand(sql, conObject);  
  313.             cmd.CommandType = commandType;  
  314.             SetParams(cmd, sqlParams);  
  315.             try  
  316.             {  
  317.                 reader = cmd.ExecuteReader(CommandBehavior.CloseConnection);  
  318.             }  
  319.             catch (Exception ex)  
  320.             {  
  321.                 throw ex;  
  322.             }  
  323.             finally  
  324.             {  
  325.                 //释放资源  
  326.                 DisponseCmd(cmd);  
  327.             }  
  328.             return reader;  
  329.         }  
  330.         ///   
  331.         /// 返回OleDbDataReader的方法 ---非存储过程的SQL语句 ---重载  
  332.         ///   
  333.         /// name="sql">  
  334.         /// name="sqlParams">  
  335.         /// <returns>returns>  
  336.         public static OleDbDataReader GetReader(string sql, params OleDbParameter[] sqlParams)  
  337.         {  
  338.             return GetReader(sql, CommandType.Text, sqlParams);  
  339.         }  
  340.         ///   
  341.         /// 执行多条SQL语句,实现数据库事务。  
  342.         ///   
  343.         /// name="SQLStringList">多条SQL语句  
  344.         public static void ExecuteSqlTran(List SQLStringList)  
  345.         {  
  346.             if (SQLStringList == null || SQLStringList.Count == 0)  
  347.                 return;  
  348.             OpenCon();  
  349.             OleDbCommand cmd = new OleDbCommand();  
  350.             cmd.Connection = conObject;  
  351.             cmd.CommandType = CommandType.Text;  
  352.             OleDbTransaction tx = conObject.BeginTransaction();  
  353.             cmd.Transaction = tx;  
  354.             try  
  355.             {  
  356.                 string sql = String.Empty;  
  357.                 for (int n = 0; n < SQLStringList.Count; n++)  
  358.                 {  
  359.                     sql = SQLStringList[n];  
  360.                     if (sql.Trim().Length > 1)  
  361.                     {  
  362.                         cmd.CommandText = sql;  
  363.                         cmd.ExecuteNonQuery();  
  364.                     }  
  365.                 }  
  366.                 tx.Commit();  
  367.             }  
  368.             catch (System.Data.OleDb.OleDbException e)  
  369.             {  
  370.                 tx.Rollback();  
  371.                 throw e;  
  372.             }  
  373.             finally  
  374.             {  
  375.                 //释放资源  
  376.                 if (tx != null)  
  377.                 {  
  378.                     tx.Dispose();  
  379.                     tx = null;  
  380.                 }  
  381.                 DisponseCmd(cmd);  
  382.                 CloseCon();  
  383.             }  
  384.         }  
  385.         ///   
  386.         /// 设置命令中参数的方法  
  387.         ///   
  388.         /// name="cmd">  
  389.         /// name="sqlParams">  
  390.         private static void SetParams(OleDbCommand cmd, params OleDbParameter[] sqlParams)  
  391.         {  
  392.             if (sqlParams != null && sqlParams.Length > 0)  
  393.                 cmd.Parameters.AddRange(sqlParams);  
  394.         }  
  395.         #endregion  
  396.         #region 释放资源的方法  
  397.         private static void DisponseCmd(OleDbCommand cmd)  
  398.         {  
  399.             if (cmd != null)  
  400.             {  
  401.                 cmd.Dispose();  
  402.                 cmd = null;  
  403.             }  
  404.         }  
  405.         private static void DisponseAdp(OleDbDataAdapter adp)  
  406.         {  
  407.             if (adp != null)  
  408.             {  
  409.                 adp.Dispose();  
  410.                 adp = null;  
  411.             }  
  412.         }  
  413.         #endregion  
  414.     }  
  415. }  

原文出处:http://www.cnblogs.com/know/archive/2011/03/10/1979751.html

【编辑推荐】

  1. CYQ.Data数据框架的性能评测
  2. MongoDB和MySQL性能测试及其结果分析
  3. 精炼概括Oracle性能测试
  4. MySQL性能测试大总结
  5. MySQL中MyISAM引擎和Heap引擎执行速度性能测试

 

责任编辑:艾婧 来源: 博客园
相关推荐

2021-11-26 22:07:57

数据库管理Mongodb

2009-07-20 15:56:08

JDBC连接数据库步骤

2009-07-14 17:18:23

JDBC怎么连接数据库

2009-07-07 14:56:33

JSP连接MySQL

2009-07-17 15:34:37

Java Swing连接数据库

2009-07-14 18:13:36

Microsoft J

2020-08-31 07:00:00

数据库数据库同步

2011-06-21 15:11:04

QT 数据库

2009-10-13 09:43:43

Oracle数据库备份

2012-09-26 10:20:06

数据库

2010-09-13 15:55:17

SQL Server数

2009-12-29 11:15:45

ADO数据库

2023-11-28 09:13:02

程序开发

2023-10-30 09:24:12

Java网络

2018-07-18 09:16:39

关系型非关系型数据库

2009-07-21 11:05:49

关闭ADO.NET连接

2010-08-24 09:29:37

内连接全连接

2011-06-07 17:14:15

关系型数据库压缩技术

2009-07-03 17:37:54

JSP数据库

2021-07-07 14:20:15

高并发服务数据库
点赞
收藏

51CTO技术栈公众号