Il s'agit d'un serveur SQL géré par un serveur SQL.
utiliser le système ;
en utilisant System.Data ;
en utilisant System.Configuration ;
en utilisant System.Web ;
en utilisant System.Web.Security ;
en utilisant System.Web.UI ;
en utilisant System.Web.UI.WebControls ;
en utilisant System.Web.UI.WebControls.WebParts ;
en utilisant System.Web.UI.HtmlControls ;
en utilisant System.Data.OleDb ;
/// <résumé>
/// DataAccess 的摘要说明
/// </summary>
classe publique DataAccess
{
OleDbConnection statique protégé conn = new OleDbConnection();
OleDbCommand statique protégé comm = new OleDbCommand();
Accès aux données public()
{
//initialisation
}
vide statique privé openConnection()
{
si (conn.State == ConnectionState.Closed)
{
conn.ConnectionString = @"Provider=Microsoft.Jet.OleDb.4.0;Data Source="+ConfigurationManager.AppSettings["myconn"];//web.config文件里设定。
comm.Connection = conn;
essayer
{
conn.Open();
}
attraper (exception e)
{lancer une nouvelle exception (e.Message); }
}
}//打开数据库
vide statique privé closeConnection()
{
si (conn.State == ConnectionState.Open)
{
conn.Close();
conn.Dispose();
comm.Dispose();
}
}//关闭数据库
public static void excuteSql(string sqlstr)
{
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
comm.ExecuteNonQuery();
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{ closeConnection(); }
}//pour SQL语句
public static OleDbDataReader dataReader (string sqlstr)
{
OleDbDataReader dr = null ;
essayer
{
openConnection();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr = comm.ExecuteReader(CommandBehavior.CloseConnection);
}
attraper
{
essayer
{
dr.Close();
closeConnection();
}
attraper { }
}
retour dr;
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭这个对象。
public static void dataReader (chaîne sqlstr, réf OleDbDataReader dr)
{
essayer
{
openConnection();
comm.CommandText = sqlstr;
comm.CommandType = CommandType.Text;
dr=comm.ExecuteReader(CommandBehavior.CloseConnection);
}
attraper
{
essayer
{
si (dr != null && !dr.IsClosed)
dr.Close();
}
attraper
{
}
enfin
{
closeConnection();
}
}
}//返回指定sql语句的OleDbDataReader对象,使用时请注意关闭
public static DataSet dataSet (string sqlstr)
{
DataSetds = new DataSet();
OleDbDataAdapter par = new OleDbDataAdapter();
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{
closeConnection();
}
retourner ds ;
}//返回指定sql语句的dataset
public static void dataSet (string sqlstr, ref DataSet ds)
{
OleDbDataAdapter par = new OleDbDataAdapter();
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{
closeConnection();
}
}//返回指定sql语句的dataset
public static DataTable dataTable(string sqlstr)
{
DataTable dt = new DataTable();
OleDbDataAdapter par = new OleDbDataAdapter();
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{
closeConnection();
}
retourner dt ;
}//返回指定sql语句的datatable
public static void dataTable (string sqlstr, ref DataTable dt)
{
OleDbDataAdapter par = new OleDbDataAdapter();
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(dt);
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{
closeConnection();
}
}//返回指定sql语句的datatable
public static DataView dataView (string sqlstr)
{
OleDbDataAdapter par = new OleDbDataAdapter();
DataView dv = nouveau DataView();
DataSetds = new DataSet();
essayer
{
openConnection();
comm.CommandType = CommandType.Text;
comm.CommandText = sqlstr;
da.SelectCommand = comm;
da.Fill(ds);
dv = ds.Tables[0].DefaultView;
}
attraper (exception e)
{
lancer une nouvelle exception (e.Message);
}
enfin
{
closeConnection();
}
retourner dv;
}
//返回指定sql语句的dataview
}
Lire : http://enuosky.cnblogs.com/archive/2006/05/15/400879.html