ASP.NET数据库驱动类的实现:DBHelper

开发 后端
本文提供的代码实现了一个ASP.NET数据库驱动类:DBHelper。

下面这段代码实现一个ASP.NET数据库驱动类:DBHelper。

using System;  
using System.Collections.Generic;  
using System.Text;  
using System.Data;  
using System.Data.SqlClient;  
 
namespace DBUtility  
{  
    public static class SQLHelper  
    {  
        private static string connectionString =   
            @"server=.\SQLEXPRESS;uid=sa;pwd=;database=MyBookShop";  
        private static SqlConnection sqlConn;  
 
        /// < summary>  
        ///   
        /// < /summary>  
        /// < param name="sql">< /param>  
        /// < returns>< /returns>  
        public static SqlDataReader GetDataReader(string sql)  
        {  
            try 
            {  
                sqlConn = new SqlConnection(connectionString);  
                sqlConn.Open();  
                SqlCommand sqlCmd = new SqlCommand(sql,sqlConn);  
                SqlDataReader sqlDr =   
                    sqlCmd.ExecuteReader(CommandBehavior.CloseConnection);  
                return sqlDr;  
 
            }  
            catch (SqlException ex)  
            {  
                throw ex;  
            }             
 
        }  
 
        public static object ExecScalar(string sql)  
        {  
            try 
            {  
                sqlConn = new SqlConnection(connectionString);  
                sqlConn.Open();  
                SqlCommand sqlCmd = new SqlCommand(sql, sqlConn);  
                object obj =  
                    sqlCmd.ExecuteScalar();  
                return obj;  
 
            }  
            catch (SqlException ex)  
            {  
                throw ex;  
            }  
            finally 
            {  
                sqlConn.Close();  
            }  
 
        }  
 
        /// < summary>  
        /// ASP.NET数据库驱动类:执行带参的命令式的存储过程  
        /// < /summary>  
        /// < param name="procName">存储过程名称< /param>  
        /// < param name="paras">为存储过程的参数解决赋参的SqlParameter对象数组  
        /// (每一个SqlParameter对象为一个参数解决赋参)< /param>  
        /// < returns>存储过程的返回值< /returns>  
        public static int ExecuteProc1(string procName,  
            SqlParameter[] paras)  
        {  
            try 
            {  
                sqlConn = new SqlConnection(connectionString);  
                sqlConn.Open();  
                SqlCommand sqlCmd = new SqlCommand(procName, sqlConn);  
                //执行存储过程类型  
                sqlCmd.CommandType = CommandType.StoredProcedure;  
                sqlCmd.Parameters.AddRange(paras);  
 
                SqlParameter p = new SqlParameter();  
                //取存储过程的返回值  
                p.Direction = ParameterDirection.ReturnValue;  
                p.SqlDbType = SqlDbType.Int;  
 
                sqlCmd.Parameters.Add(p);  
                sqlCmd.ExecuteNonQuery();  
 
                int v = p.Value==null?-1:Convert.ToInt32(p.Value);  
                return v;               
 
            }  
            catch (SqlException ex)  
            {  
                throw ex;  
            }  
            finally 
            {  
                sqlConn.Close();  
            }  
        }  
 
        /// < summary>  
        /// ASP.NET数据库驱动类:执行带参的查询式的存储过程  
        /// < /summary>  
        /// < param name="procName">存储过程名称< /param>  
        /// < param name="paras">为存储过程的参数解决赋参的SqlParameter对象数组  
        /// (每一个SqlParameter对象为一个参数解决赋参)< /param>  
        /// < returns>存储过程执行完毕后如果在数据库服务器端形成一个  
        /// 查询结果集,则返回指向该结果集的一个数据读取器对象< /returns>  
        public static SqlDataReader ExecuteProc2(string procName,  
            SqlParameter[] paras)  
        {  
            try 
            {  
                sqlConn = new SqlConnection(connectionString);  
                sqlConn.Open();  
                SqlCommand sqlCmd = new SqlCommand(procName, sqlConn);  
                //执行存储过程类型  
                sqlCmd.CommandType = CommandType.StoredProcedure;  
                sqlCmd.Parameters.AddRange(paras);  
                 
                SqlDataReader sqlDr =   
                    sqlCmd.ExecuteReader(CommandBehavior.CloseConnection);  
                  
                return sqlDr;  
 
            }  
            catch (SqlException ex)  
            {  
                throw ex;  
            }             
        }  
    }  
}  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.

以上就是ASP.NET数据库驱动类DBHelper的实现代码。

【编辑推荐】

  1. 用C#写的ASP.NET数据库操作类
  2. ASP.NET数据库图片存储到Sql2000中
  3. ASP.NET自定义错误处理页面的添加
  4. ASP.NET中的session存储模式运用
  5. ASP.NET中的文件上传下载方法集合
责任编辑:yangsai 来源: 百度空间
相关推荐

2009-07-28 17:36:21

ASP.NET数据库连

2009-02-23 15:20:03

SQL Server数据库ASP.NET

2009-07-31 09:57:47

ASP.NET数据库缓

2009-07-31 13:52:26

ASP.NET数据库图

2009-07-31 16:45:23

ASP.NET数据库操

2009-07-31 17:07:40

ASP.NET数据库连

2009-08-05 15:40:49

ASP.NET连接数据

2009-08-11 12:52:05

ASP.NET数据库程

2009-07-29 09:12:31

ASP.NET数据库连

2009-08-12 11:04:38

ASP.NET和SQL

2009-09-03 19:30:02

ASP.NET数据库SQL Server

2011-08-01 23:34:34

ASP.NETOracle

2009-07-28 14:16:31

ASP.NET与MyS

2009-09-13 22:35:12

ASP.NET数据库

2009-07-27 17:58:10

ASP.NET数据库编

2010-05-25 08:49:33

连接MySQL

2009-08-04 10:02:36

中国站长站

2009-07-28 11:00:24

Excel导入SQL

2009-07-24 10:06:33

数据库字符串ASP.NET

2009-07-20 17:03:55

批量插入数据ASP.NET
点赞
收藏

51CTO技术栈公众号