欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  类库下载

C# Access数据库操作

程序员文章站 2022-03-06 16:46:33
...
using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Text;  
using System.Data;  
using System.Data.OleDb;  
   
   
namespace AccessPractice  
{  
    public static class AccessHelper  
    {  
        public static bool Execute(string path,string sql)   
        {  
            try 
            {  
                string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";";  
                OleDbConnection odcConnection = new OleDbConnection(strConn);  
                //2、打开连接  
                odcConnection.Open();  
                //建立SQL查询  
                OleDbCommand odCommand = odcConnection.CreateCommand();  
                //3、输入查询语句  
                odCommand.CommandText = sql;  
   
   
                odCommand.ExecuteNonQuery();  
                odcConnection.Close();  
                return true;  
            }  
            catch(Exception ex)  
            {  
                return false;  
            }  
   
   
        }  
   
   
        public static DataTable ReadAllData(string tableName, string mdbPath,int topN, ref bool success)  
        {  
            DataTable dt = new DataTable();  
            try 
            {  
                //1、建立连接  
                string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + mdbPath + ";";  
                OleDbConnection odcConnection = new OleDbConnection(strConn);  
                //2、打开连接  
                odcConnection.Open();  
                //建立SQL查询  
                OleDbCommand odCommand = odcConnection.CreateCommand();  
                //3、输入查询语句  
                odCommand.CommandText = "select * from " + tableName;  
                //建立读取  
                OleDbDataReader odrReader = odCommand.ExecuteReader();  
                //查询并显示数据  
                int size = odrReader.FieldCount;  
                for (int i = 0; i