我的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数据操作类(转)        #region 执行事务
我的DbHelper数据操作类(转)        public DataSet ExecuteDataSet(DbCommand cmd,Trans t)
我的DbHelper数据操作类(转)        {
我的DbHelper数据操作类(转)            cmd.Connection = t.DbConnection;
我的DbHelper数据操作类(转)            cmd.Transaction = t.DbTrans;
我的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, Trans t)
我的DbHelper数据操作类(转)        {
我的DbHelper数据操作类(转)            cmd.Connection = t.DbConnection;
我的DbHelper数据操作类(转)            cmd.Transaction = t.DbTrans;
我的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, Trans t)
我的DbHelper数据操作类(转)        {
我的DbHelper数据操作类(转)            cmd.Connection.Close();
我的DbHelper数据操作类(转)            cmd.Connection = t.DbConnection;
我的DbHelper数据操作类(转)            cmd.Transaction = t.DbTrans;            
我的DbHelper数据操作类(转)            DbDataReader reader = cmd.ExecuteReader();
我的DbHelper数据操作类(转)            DataTable dt = new DataTable();            
我的DbHelper数据操作类(转)            return reader;
我的DbHelper数据操作类(转)        }
我的DbHelper数据操作类(转)        public int ExecuteNonQuery(DbCommand cmd, Trans t)
我的DbHelper数据操作类(转)        {
我的DbHelper数据操作类(转)            cmd.Connection.Close();
我的DbHelper数据操作类(转)            cmd.Connection = t.DbConnection;
我的DbHelper数据操作类(转)            cmd.Transaction = t.DbTrans;  
我的DbHelper数据操作类(转)            int ret = cmd.ExecuteNonQuery();            
我的DbHelper数据操作类(转)            return ret;
我的DbHelper数据操作类(转)        }
我的DbHelper数据操作类(转)
我的DbHelper数据操作类(转)        public object ExecuteScalar(DbCommand cmd, Trans t)
我的DbHelper数据操作类(转)        {
我的DbHelper数据操作类(转)            cmd.Connection.Close();
我的DbHelper数据操作类(转)            cmd.Connection = t.DbConnection;
我的DbHelper数据操作类(转)            cmd.Transaction = t.DbTrans;  
我的DbHelper数据操作类(转)            object ret = cmd.ExecuteScalar();            
我的DbHelper数据操作类(转)            return ret;
我的DbHelper数据操作类(转)        }
我的DbHelper数据操作类(转)        #endregion
我的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,或者有更好的数据操作类的实现方式,请联系我哦.

我的DbHelper数据操作类(转)

上一篇:ORACLE,SQLSERVER等数据库如何获取某张表中相同字段最近一条数


下一篇:四个好看的CSS样式表格