C#中怎么操作Access

发布时间:2021-07-19 15:30:21 作者:Leah
来源:亿速云 阅读:132

这期内容当中小编将会给大家带来有关C#中怎么操作Access,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

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 的摘要说明 C#操作Access实例解析 /// </summary>  public class DataAccess  {   protected static OleDbConnection conn = new OleDbConnection();   protected static OleDbCommand comm = new OleDbCommand();  public DataAccess()  {     //init C#操作Access实例解析 }   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.Connection = conn;  try {  conn.Open();  }  catch (Exception e)  { throw new Exception(e.Message); }   }        }//打开数据库 C#操作Access实例解析     private static void closeConnection()   {  if (conn.State == ConnectionState.Open)  {   conn.Close();  conn.Dispose();  comm.Dispose();  }   }//关闭数据库 C#操作Access实例解析   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(); }   }//执行sql语句 C#操作Access实例解析   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语句的OleDbDataReader对象,使用时请注意关闭这个对象。   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实例解析catch {  }  finally {  closeConnection();  }  }   }  //返回指定sql语句的OleDbDataReader对象,使用时请注意关闭    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语句的dataset C#操作Access实例解析   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语句的dataset C#操作Access实例解析  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语句的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语句的datatable C#操作Access实例解析   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语句的dataview C#操作Access实例解析  }

上述就是小编为大家分享的C#中怎么操作Access了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. C# 中操作Access数据库显示数据
  2. C# 中怎么操作access数据库

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

access

上一篇:C#中Connection对象的作用是什么

下一篇:python中的EasyOCR库是什么

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》