溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

C#中怎么操作Access

發(fā)布時(shí)間:2021-07-19 15:30:21 來(lái)源:億速云 閱讀:135 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)C#中怎么操作Access,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

using System;  using System.Data;  using System.Configuration;  using System.Web;  using System.Web.Security;  using System.Web.UI;  using System.Web.UI.WebControls;  using System.Web.UI.WebControls.WebParts;  using System.Web.UI.HtmlControls;  using System.Data.OleDb;    /// <summary>  /// DataAccess 的摘要說(shuō)明 C#操作Access實(shí)例解析 /// </summary>  public class DataAccess  {   protected static OleDbConnection conn = new OleDbConnection();   protected static OleDbCommand comm = new OleDbCommand();  public DataAccess()  {     //init C#操作Access實(shí)例解析 }   private static void openConnection()   {  if (conn.State == ConnectionState.Closed)  {  conn.ConnectionString = @"Provider=Microsoft.Jet.OleDb.4.0;  Data Source="+ConfigurationManager.AppSettings["myconn"];  //web.config文件里設(shè)定。  comm.Connection = conn;  try {  conn.Open();  }  catch (Exception e)  { throw new Exception(e.Message); }   }        }//打開(kāi)數(shù)據(jù)庫(kù) C#操作Access實(shí)例解析     private static void closeConnection()   {  if (conn.State == ConnectionState.Open)  {   conn.Close();  conn.Dispose();  comm.Dispose();  }   }//關(guān)閉數(shù)據(jù)庫(kù) C#操作Access實(shí)例解析   public static void excuteSql(string sqlstr)   {  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  comm.ExecuteNonQuery();  }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally { closeConnection(); }   }//執(zhí)行sql語(yǔ)句 C#操作Access實(shí)例解析   public static OleDbDataReader dataReader(string sqlstr)   {  OleDbDataReader dr = null;  try {  openConnection();  comm.CommandText = sqlstr;  comm.CommandType = CommandType.Text;   dr = comm.ExecuteReader(CommandBehavior.CloseConnection);  }  catch {  try {  dr.Close();  closeConnection();  }  catch { }  }  return dr;  }  //返回指定sql語(yǔ)句的OleDbDataReader對(duì)象,使用時(shí)請(qǐng)注意關(guān)閉這個(gè)對(duì)象。   public static void dataReader(string sqlstr,   ref OleDbDataReader dr)   {  try {  openConnection();  comm.CommandText = sqlstr;  comm.CommandType = CommandType.Text;  dr=comm.ExecuteReader(CommandBehavior.CloseConnection);  }  catch {  try {  if (dr != null && !dr.IsClosed)     dr.Close();  }  //C#操作Access實(shí)例解析catch {  }  finally {  closeConnection();  }  }   }  //返回指定sql語(yǔ)句的OleDbDataReader對(duì)象,使用時(shí)請(qǐng)注意關(guān)閉    public static DataSet dataSet(string sqlstr)   {  DataSet ds = new DataSet();  OleDbDataAdapter da = new OleDbDataAdapter();  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  da.SelectCommand = comm;  da.Fill(ds);   }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally {  closeConnection();  }  return ds;   }//返回指定sql語(yǔ)句的dataset C#操作Access實(shí)例解析   public static void dataSet(  string sqlstr, ref DataSet ds)   {  OleDbDataAdapter da = new OleDbDataAdapter();  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  da.SelectCommand = comm;  da.Fill(ds);  }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally {  closeConnection();  }   }//返回指定sql語(yǔ)句的dataset C#操作Access實(shí)例解析  public static DataTable dataTable(string sqlstr)   {  DataTable dt = new DataTable();  OleDbDataAdapter da = new OleDbDataAdapter();  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  da.SelectCommand = comm;  da.Fill(dt);  }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally {  closeConnection();  }  return dt;   }//返回指定sql語(yǔ)句的datatable   public static void dataTable(  string sqlstr, ref DataTable dt)   {  OleDbDataAdapter da = new OleDbDataAdapter();  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  da.SelectCommand = comm;  da.Fill(dt);  }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally {  closeConnection();  }   }//返回指定sql語(yǔ)句的datatable C#操作Access實(shí)例解析   public static DataView dataView(string sqlstr)   {  OleDbDataAdapter da = new OleDbDataAdapter();  DataView dv = new DataView();  DataSet ds = new DataSet();  try {  openConnection();  comm.CommandType = CommandType.Text;  comm.CommandText = sqlstr;  da.SelectCommand = comm;  da.Fill(ds);  dv = ds.Tables[0].DefaultView;  }  catch (Exception e)  {  throw new Exception(e.Message);  }  finally {  closeConnection();  }  return dv;   }  //返回指定sql語(yǔ)句的dataview C#操作Access實(shí)例解析  }

上述就是小編為大家分享的C#中怎么操作Access了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI