仿照以前收集的一个经典sql server数据访问类,稍做修改。
usando o sistema;
usando System.Data;
usando System.Configuration;
usando System.Web;
usando System.Web.Security;
usando System.Web.UI;
usando System.Web.UI.WebControls;
usando System.Web.UI.WebControls.WebParts;
usando System.Web.UI.HtmlControls;
usando System.Data.OleDb;
/// <resumo>
/// DataAccess 的摘要说明
/// </sumário>
classe pública DataAccess
{
OleDbConnection estático protegido conn = new OleDbConnection();
OleDbCommand estático protegido comm = new OleDbCommand();
Acesso a dados público()
{
//iniciar
}
private static void openConnection()
{
if (conn.State == ConnectionState.Closed)
{
conn.ConnectionString = @"Provider=Microsoft.Jet.OleDb.4.0;Data Source="+ConfigurationManager.AppSettings["myconn"];//web.config文件里设定。
comm.Conexão = conexão;
tentar
{
conexão.Open();
}
pegar (Exceção e)
{ lançar nova exceção (e.Message); }
}
}//打开数据库
privado estático vazio closeConnection()
{
if (conn.State == ConnectionState.Open)
{
conexão.Fechar();
conexão.Dispose();
comm.Dispose();
}
}//关闭数据库
public static void excuteSql(string sqlstr)
{
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
comm.ExecuteNonQuery();
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{fecharConexão(); }
}//执行sql语句
public static OleDbDataReader dataReader(string sqlstr)
{
OleDbDataReader dr = null;
tentar
{
openConnection();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr = comm.ExecuteReader(CommandBehavior.CloseConnection);
}
pegar
{
tentar
{
dr.Fechar();
fecharConexão();
}
pegar { }
}
retornar dr;
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭这个对象。
public static void dataReader(string sqlstr, ref OleDbDataReader dr)
{
tentar
{
openConnection();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr=comm.ExecuteReader(CommandBehavior.CloseConnection);
}
pegar
{
tentar
{
if (dr! = null &&! dr.IsClosed)
dr.Fechar();
}
pegar
{
}
finalmente
{
fecharConexão();
}
}
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭
public static DataSet dataSet(string sqlstr)
{
DataSet ds = new DataSet();
OleDbDataAdapter da = new OleDbDataAdapter();
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{
fecharConexão();
}
retornar ds;
}//返回指定sql语句的dataset
public static void dataSet(string sqlstr, ref DataSet ds)
{
OleDbDataAdapter da = new OleDbDataAdapter();
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{
fecharConexão();
}
}//返回指定sql语句的dataset
public static DataTable dataTable(string sqlstr)
{
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter();
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{
fecharConexão();
}
retornar dt;
}//返回指定sql语句的tabela de dados
tabela de dados vazia estática pública (string sqlstr, ref DataTable dt)
{
OleDbDataAdapter da = new OleDbDataAdapter();
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{
fecharConexão();
}
}//返回指定
sql语句的datatable public static DataView dataView(string sqlstr)
{
OleDbDataAdapter da = new OleDbDataAdapter();
DataView dv = new DataView();
DataSet ds = new DataSet();
tentar
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
dv = ds.Tables[0].DefaultView;
}
pegar (Exceção e)
{
lançar nova exceção (e.Message);
}
finalmente
{
fecharConexão();
}
retornar dv;
}
//返回指定sql语句的dataview
}
Link: http://enuosky.cnblogs.com/archive/2006/05/15/400879.html