我的DbHelper数据操作类

其实,微软的企业库中有一个非常不错的数据操作类了.但是,不少公司(起码我遇到的几个...),对一些"封装"了些什么的东西不太敢用,虽然我推荐过微软的企业库框架了...但是还是要"评估"...一评就是几个月...而且,一些公司有的根本就是裸ado.net开发,或者自己封装的数据库操作类非常别扭,很不好用.
      这里我给大家共享一个我参照企业库中的数据操作组件编码风格写的数据库操作类,对使用它的程序员来说,编码是很舒服滴(起码我觉得很好撒).以下是代码,很简单的,没有做任何多余的封装,只是改变了ADO.NET的编码步骤,方便了具体开发数据库操作代码的程序员.

我的DbHelper数据操作类    using System;
我的DbHelper数据操作类    using System.Data;
我的DbHelper数据操作类    using System.Data.Common;
我的DbHelper数据操作类    using System.Configuration;
我的DbHelper数据操作类
我的DbHelper数据操作类    public class DbHelper
我的DbHelper数据操作类    {
我的DbHelper数据操作类        private static string dbProviderName = ConfigurationManager.AppSettings["DbHelperProvider"];
我的DbHelper数据操作类        private static string dbConnectionString = ConfigurationManager.AppSettings["DbHelperConnectionString"];
我的DbHelper数据操作类
我的DbHelper数据操作类        private DbConnection connection;
我的DbHelper数据操作类        public DbHelper()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            this.connection = CreateConnection(DbHelper.dbConnectionString);
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public DbHelper(string connectionString)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            this.connection = CreateConnection(connectionString);
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public static DbConnection CreateConnection()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbProviderFactory dbfactory = DbProviderFactories.GetFactory(DbHelper.dbProviderName);
我的DbHelper数据操作类            DbConnection dbconn = dbfactory.CreateConnection();
我的DbHelper数据操作类            dbconn.ConnectionString = DbHelper.dbConnectionString;
我的DbHelper数据操作类            return dbconn;
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public static DbConnection CreateConnection(string connectionString)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbProviderFactory dbfactory = DbProviderFactories.GetFactory(DbHelper.dbProviderName);
我的DbHelper数据操作类            DbConnection dbconn = dbfactory.CreateConnection();
我的DbHelper数据操作类            dbconn.ConnectionString = connectionString;
我的DbHelper数据操作类            return dbconn;
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public DbCommand GetStoredProcCommond(string storedProcedure)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbCommand dbCommand = connection.CreateCommand();
我的DbHelper数据操作类            dbCommand.CommandText = storedProcedure;
我的DbHelper数据操作类            dbCommand.CommandType = CommandType.StoredProcedure;
我的DbHelper数据操作类            return dbCommand;
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public DbCommand GetSqlStringCommond(string sqlQuery)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbCommand dbCommand = connection.CreateCommand();
我的DbHelper数据操作类            dbCommand.CommandText = sqlQuery;
我的DbHelper数据操作类            dbCommand.CommandType = CommandType.Text;
我的DbHelper数据操作类            return dbCommand;
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        #region 增加参数
我的DbHelper数据操作类        public void AddParameterCollection(DbCommand cmd, DbParameterCollection dbParameterCollection)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            foreach (DbParameter dbParameter in dbParameterCollection)
我的DbHelper数据操作类            {
我的DbHelper数据操作类                cmd.Parameters.Add(dbParameter);
我的DbHelper数据操作类            }
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public void AddOutParameter(DbCommand cmd, string parameterName, DbType dbType, int size)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbParameter dbParameter = cmd.CreateParameter();
我的DbHelper数据操作类            dbParameter.DbType = dbType;
我的DbHelper数据操作类            dbParameter.ParameterName = parameterName;
我的DbHelper数据操作类            dbParameter.Size = size;
我的DbHelper数据操作类            dbParameter.Direction = ParameterDirection.Output;
我的DbHelper数据操作类            cmd.Parameters.Add(dbParameter);
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public void AddInParameter(DbCommand cmd, string parameterName, DbType dbType, object value)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbParameter dbParameter = cmd.CreateParameter();
我的DbHelper数据操作类            dbParameter.DbType = dbType;
我的DbHelper数据操作类            dbParameter.ParameterName = parameterName;
我的DbHelper数据操作类            dbParameter.Value = value;
我的DbHelper数据操作类            dbParameter.Direction = ParameterDirection.Input;
我的DbHelper数据操作类            cmd.Parameters.Add(dbParameter);
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public void AddReturnParameter(DbCommand cmd, string parameterName, DbType dbType)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbParameter dbParameter = cmd.CreateParameter();
我的DbHelper数据操作类            dbParameter.DbType = dbType;
我的DbHelper数据操作类            dbParameter.ParameterName = parameterName;
我的DbHelper数据操作类            dbParameter.Direction = ParameterDirection.ReturnValue;
我的DbHelper数据操作类            cmd.Parameters.Add(dbParameter);
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public DbParameter GetParameter(DbCommand cmd, string parameterName)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            return cmd.Parameters[parameterName];
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        #endregion
我的DbHelper数据操作类
我的DbHelper数据操作类        #region 执行
我的DbHelper数据操作类        public DataSet ExecuteDataSet(DbCommand cmd)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbProviderFactory dbfactory = DbProviderFactories.GetFactory(DbHelper.dbProviderName);
我的DbHelper数据操作类            DbDataAdapter dbDataAdapter = dbfactory.CreateDataAdapter();
我的DbHelper数据操作类            dbDataAdapter.SelectCommand = cmd;
我的DbHelper数据操作类            DataSet ds = new DataSet();
我的DbHelper数据操作类            dbDataAdapter.Fill(ds);
我的DbHelper数据操作类            return ds;
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public DataTable ExecuteDataTable(DbCommand cmd)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            DbProviderFactory dbfactory = DbProviderFactories.GetFactory(DbHelper.dbProviderName);
我的DbHelper数据操作类            DbDataAdapter dbDataAdapter = dbfactory.CreateDataAdapter();
我的DbHelper数据操作类            dbDataAdapter.SelectCommand = cmd;
我的DbHelper数据操作类            DataTable dataTable = new DataTable();
我的DbHelper数据操作类            dbDataAdapter.Fill(dataTable);
我的DbHelper数据操作类            return dataTable;
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public DbDataReader ExecuteReader(DbCommand cmd)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            cmd.Connection.Open();
我的DbHelper数据操作类            DbDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection);            
我的DbHelper数据操作类            return reader;
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public int ExecuteNonQuery(DbCommand cmd)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            cmd.Connection.Open();
我的DbHelper数据操作类            int ret = cmd.ExecuteNonQuery();
我的DbHelper数据操作类            cmd.Connection.Close();
我的DbHelper数据操作类            return ret;
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public object ExecuteScalar(DbCommand cmd)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            cmd.Connection.Open();
我的DbHelper数据操作类            object ret = cmd.ExecuteScalar();
我的DbHelper数据操作类            cmd.Connection.Close();
我的DbHelper数据操作类            return ret;
我的DbHelper数据操作类        }
我的DbHelper数据操作类        #endregion        
我的DbHelper数据操作类
我的DbHelper数据操作类        执行事务
我的DbHelper数据操作类    }
我的DbHelper数据操作类
我的DbHelper数据操作类    public class Trans : IDisposable
我的DbHelper数据操作类    {
我的DbHelper数据操作类        private DbConnection conn;
我的DbHelper数据操作类        private DbTransaction dbTrans;
我的DbHelper数据操作类        public DbConnection DbConnection
我的DbHelper数据操作类        {
我的DbHelper数据操作类            get { return this.conn; }
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public DbTransaction DbTrans
我的DbHelper数据操作类        {
我的DbHelper数据操作类            get { return this.dbTrans; }
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public Trans()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            conn = DbHelper.CreateConnection();
我的DbHelper数据操作类            conn.Open();
我的DbHelper数据操作类            dbTrans = conn.BeginTransaction();
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public Trans(string connectionString)
我的DbHelper数据操作类        {
我的DbHelper数据操作类            conn = DbHelper.CreateConnection(connectionString);
我的DbHelper数据操作类            conn.Open();
我的DbHelper数据操作类            dbTrans = conn.BeginTransaction();
我的DbHelper数据操作类        }
我的DbHelper数据操作类        public void Commit()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            dbTrans.Commit();
我的DbHelper数据操作类            this.Colse();
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public void RollBack()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            dbTrans.Rollback();
我的DbHelper数据操作类            this.Colse();
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public void Dispose()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            this.Colse();
我的DbHelper数据操作类        }
我的DbHelper数据操作类
我的DbHelper数据操作类        public void Colse()
我的DbHelper数据操作类        {
我的DbHelper数据操作类            if (conn.State == System.Data.ConnectionState.Open)
我的DbHelper数据操作类            {
我的DbHelper数据操作类                conn.Close();
我的DbHelper数据操作类            }
我的DbHelper数据操作类        }
我的DbHelper数据操作类    }

那么如何使用它呢?下面我给出一些基本的使用示例,基本能满足你大部分的数据库操作需要了.
1)直接执行sql语句

我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetSqlStringCommond("insert t1 (id)values('haha')");
我的DbHelper数据操作类        db.ExecuteNonQuery(cmd);

2)执行存储过程

我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetStoredProcCommond("t1_insert");
我的DbHelper数据操作类        db.AddInParameter(cmd, "@id", DbType.String, "heihei");
我的DbHelper数据操作类        db.ExecuteNonQuery(cmd);

3)返回DataSet

我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetSqlStringCommond("select * from t1");
我的DbHelper数据操作类        DataSet ds = db.ExecuteDataSet(cmd);

4)返回DataTable

我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetSqlStringCommond("t1_findall");
我的DbHelper数据操作类        DataTable dt = db.ExecuteDataTable(cmd);

5)输入参数/输出参数/返回值的使用(比较重要哦)

我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetStoredProcCommond("t2_insert");
我的DbHelper数据操作类        db.AddInParameter(cmd, "@timeticks", DbType.Int64, DateTime.Now.Ticks);
我的DbHelper数据操作类        db.AddOutParameter(cmd, "@outString", DbType.String, 20);
我的DbHelper数据操作类        db.AddReturnParameter(cmd, "@returnValue", DbType.Int32);
我的DbHelper数据操作类
我的DbHelper数据操作类        db.ExecuteNonQuery(cmd);
我的DbHelper数据操作类
我的DbHelper数据操作类        string s = db.GetParameter(cmd, "@outString").Value as string;//out parameter
我的DbHelper数据操作类        int r = Convert.ToInt32(db.GetParameter(cmd, "@returnValue").Value);//return value
我的DbHelper数据操作类

6)DataReader使用

我的DbHelper数据操作类      DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetStoredProcCommond("t2_insert");
我的DbHelper数据操作类        db.AddInParameter(cmd, "@timeticks", DbType.Int64, DateTime.Now.Ticks);
我的DbHelper数据操作类        db.AddOutParameter(cmd, "@outString", DbType.String, 20);
我的DbHelper数据操作类        db.AddReturnParameter(cmd, "@returnValue", DbType.Int32);
我的DbHelper数据操作类
我的DbHelper数据操作类        using (DbDataReader reader = db.ExecuteReader(cmd))
我的DbHelper数据操作类        {
我的DbHelper数据操作类            dt.Load(reader);
我的DbHelper数据操作类        }        
我的DbHelper数据操作类        string s = db.GetParameter(cmd, "@outString").Value as string;//out parameter
我的DbHelper数据操作类        int r = Convert.ToInt32(db.GetParameter(cmd, "@returnValue").Value);//return value
我的DbHelper数据操作类

7)事务的使用.(项目中需要将基本的数据库操作组合成一个完整的业务流时,代码级的事务是必不可少的哦)

我的DbHelper数据操作类    pubic void DoBusiness()
我的DbHelper数据操作类    {
我的DbHelper数据操作类        using (Trans t = new Trans())
我的DbHelper数据操作类        {
我的DbHelper数据操作类            try
我的DbHelper数据操作类            {
我的DbHelper数据操作类                D1(t);
我的DbHelper数据操作类                throw new Exception();//如果有异常,会回滚滴
我的DbHelper数据操作类                D2(t);
我的DbHelper数据操作类                t.Commit();
我的DbHelper数据操作类            }
我的DbHelper数据操作类            catch
我的DbHelper数据操作类            {
我的DbHelper数据操作类                t.RollBack();
我的DbHelper数据操作类            }
我的DbHelper数据操作类        }
我的DbHelper数据操作类    }
我的DbHelper数据操作类    public void D1(Trans t)
我的DbHelper数据操作类    {
我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetStoredProcCommond("t2_insert");
我的DbHelper数据操作类        db.AddInParameter(cmd, "@timeticks", DbType.Int64, DateTime.Now.Ticks);
我的DbHelper数据操作类        db.AddOutParameter(cmd, "@outString", DbType.String, 20);
我的DbHelper数据操作类        db.AddReturnParameter(cmd, "@returnValue", DbType.Int32);
我的DbHelper数据操作类
我的DbHelper数据操作类        if (t == null) db.ExecuteNonQuery(cmd);
我的DbHelper数据操作类        else db.ExecuteNonQuery(cmd,t);
我的DbHelper数据操作类
我的DbHelper数据操作类        string s = db.GetParameter(cmd, "@outString").Value as string;//out parameter
我的DbHelper数据操作类        int r = Convert.ToInt32(db.GetParameter(cmd, "@returnValue").Value);//return value
我的DbHelper数据操作类    }
我的DbHelper数据操作类    public void D2(Trans t)
我的DbHelper数据操作类    {
我的DbHelper数据操作类        DbHelper db = new DbHelper();
我的DbHelper数据操作类        DbCommand cmd = db.GetSqlStringCommond("insert t1 (id)values('我的DbHelper数据操作类..')");        
我的DbHelper数据操作类        if (t == null) db.ExecuteNonQuery(cmd);
我的DbHelper数据操作类        else db.ExecuteNonQuery(cmd, t);
我的DbHelper数据操作类    }

以上我们好像没有指定数据库连接字符串,大家如果看下DbHelper的代码,就知道要使用它必须在config中配置两个参数,如下:

我的DbHelper数据操作类    <appSettings>
我的DbHelper数据操作类        <add key="DbHelperProvider" value="System.Data.SqlClient"/>
我的DbHelper数据操作类        <add key="DbHelperConnectionString" value="Data Source=(local);Initial Catalog=DbHelperTest;Persist Security Info=True;User ID=sa;Password=sa"/>
我的DbHelper数据操作类    </appSettings>

其实,DbHelper需要的仅仅是两个字符串,你可以自己修改,作成加密什么的...

好了,就这样,DbHelper的代码是非常简单和透明的,只是在ado.net上做了一点小包装,改变了一下使用它的程序员的编码方式,去除掉一些比较"物理级"的编程概念,如connection的open和close之类的,使程序员更专注于业务逻辑代码的编写,少死掉点脑细胞,另外,统一了数据操作层的数据操作代码的风格和格式,维护起来很方便的撒~~~

另:以上代码大家可以随意使用, 不需要给我版权费的啦,嘿嘿.如果大家发现有什么BUG,或者有更好的数据操作类的实现方式,请联系我哦.

上一篇:Codeforces Round #237 (Div. 2) C. Restore Graph(水构造)


下一篇:【Codeforces 404C】Restore Graph