仿照以前收集的一个经典的sql server数据访问类,稍做修改。
使用系统;
使用系统数据;
使用系统配置;
使用系统.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用 System.Data.OleDb;
/// <摘要>
/// DataAccess 的摘要说明
/// </摘要>
公共类数据访问
{
protected static OleDbConnection conn = new OleDbConnection();
protected static OleDbCommand comm = new OleDbCommand();
公共数据访问()
{
//初始化
}
私有静态无效 openConnection()
{
if (conn.State == ConnectionState.Closed)
{
conn.ConnectionString = @"Provider=Microsoft.Jet.OleDb.4.0;Data Source="+ConfigurationManager.AppSettings["myconn"];//web.config文件里设置。
comm.Connection = conn;
尝试
{
conn.Open();
}
捕获(异常 e)
{ 抛出新的异常(e.Message); }
}
}//打开数据库
私有静态无效 closeConnection()
{
if (conn.State == ConnectionState.Open)
{
conn.Close();
conn.Dispose();
comm.Dispose();
}
}//关闭数据库
public static void excuteSql(string sqlstr)
{
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
comm.ExecuteNonQuery();
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{ 关闭连接(); }
}//执行sql语句
public static OleDbDataReader dataReader(string sqlstr)
{
OleDbDataReader dr = null;
尝试
{
打开连接();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr = comm.ExecuteReader(CommandBehavior.CloseConnection);
}
抓住
{
尝试
{
博士.关闭();
关闭连接();
}
抓住 { }
}
返回博士;
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭该对象。
公共静态无效dataReader(字符串sqlstr,ref OleDbDataReader dr)
{
尝试
{
打开连接();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr=comm.ExecuteReader(CommandBehavior.CloseConnection);
}
抓住
{
尝试
{
if (dr != null && !dr.IsClosed)
博士.关闭();
}
抓住
{
}
最后
{
关闭连接();
}
}
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭
public static DataSet dataSet(string sqlstr)
{
数据集 ds = new 数据集();
OleDbDataAdapter da = new OleDbDataAdapter();
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{
关闭连接();
}
返回ds;
}//返回指定sql语句的数据集
public static void dataSet(string sqlstr, ref DataSet ds)
{
OleDbDataAdapter da = new OleDbDataAdapter();
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{
关闭连接();
}
}//返回指定sql语句的数据集
public static DataTable dataTable(string sqlstr)
{
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter();
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{
关闭连接();
}
返回dt;
}//返回指定数据表的sql语句
公共静态无效数据表(字符串sqlstr,参考数据表dt)
{
OleDbDataAdapter da = new OleDbDataAdapter();
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{
关闭连接();
}
}//返回指定sql语句的数据表
public static DataView dataView(string sqlstr)
{
OleDbDataAdapter da = new OleDbDataAdapter();
数据视图 dv = 新的数据视图();
数据集 ds = new 数据集();
尝试
{
打开连接();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
dv = ds.Tables[0].DefaultView;
}
捕获(异常 e)
{
抛出新的异常(e.Message);
}
最后
{
关闭连接();
}
返回 dv;
}
//返回指定sql语句的dataview
}
出处: http://enuosky.cnblogs.com/archive/2006/05/15/400879.html