Sql数据访问类
1 /**/ //////////// //数据访问类 2 using System; 3 using System.ComponentModel; 4 using System.Collections; 5 using System.Web.Security; 6 using System.Diagnostics; 7 using System.Data; 8 using System.Data.SqlClient; 9 using System.Configuration; 10 using System.Text.RegularExpressions; 11 12 namespace WebApp.Components 13 { 14 /**/ /// <summary> 15 /// 通用的数据库处理类,通过ado.net与数据库连接 16 /// </summary> 17 public class Database : IDisposable 18 { 19 // 连接数据源 20 private SqlConnection con; 21 22 执行不带参数的存储过程,返回存储过程返回值 #region 执行不带参数的存储过程,返回存储过程返回值 23 /**/ /// <summary> 24 /// 执行存储过程 25 /// </summary> 26 ///