C 連線 Access 操作 轉,整理

2021-09-30 09:34:21 字數 1577 閱讀 3273

1、配置web.config檔案:配置資料庫連線引數

providername="system.data.oledb" />

2、程式設計開始:

1、按要求建立access資料庫及資料表

2、編寫資料庫訪問、操作的公用類,此類可以復用到以後開發的任何系統中

(1)、新建乙個c# 類庫專案, 命名為「com.lxj」,設定專案屬性:程式集名稱、預設命名空間均為「com.lxj」

(2)、在此專案目錄下建立目錄database,新建c# 類檔案conndbforaccess.cs 在database目錄下。

新增引用:system.web.dll

(3)、編寫conndbforaccess.cs 的**

using system;

using system.data;

using system.data.oledb;

using system.web;

using system.web.ui;

using system.configuration;

namespace com.lxj.database

/// ///

建構函式:帶有引數的資料庫連線

///

///

public conndbforacccess(string newconnectionstring)

/// ///

獲得連線字串

///

public string connectionstring

} /// ///

執行sql語句沒有返回結果,如:執行刪除、更新、插入等操作

///

///

///

操作成功標誌

public bool exesql(string strsql)

catch

finally

return resultstate;

} /// ///

執行sql語句返回結果到datareader中

///

///

///

datareader

private

oledbdatareader returndatareader(string strsql)

/// ///

執行sql語句返回結果到dataset中

///

///

///

dataset

public

dataset returndataset(string strsql)

/// ///

執行一查詢語句,同時返回查詢結果數目

///

///

///

sqlresultcount

public int returnsqlresultcount(string strsql)

datareader.close();

}catch

finally

return sqlresultcount;

} }//

}//

C 連線 Access 操作

1 配置web.config檔案 配置資料庫連線引數 providername system.data.oledb 2 程式設計開始 1 按要求建立access資料庫及資料表 2 編寫資料庫訪問 操作的公用類,此類可以復用到以後開發的任何系統中 1 新建乙個c 類庫專案,命名為 com.lxj 設定...

連線Access的說明 個人整理收藏

首先看乙個例子 片斷 程式 using system.data using system.data.oledb string strconnection provider microsoft.jet.oledb.4.0 strconnection data source c begaspnet no...

連線並操作Access資料庫C 類

1 配置web.config檔案 配置資料庫連線引數 2 操作access資料庫c 類 using system using system.data using system.data.oledb using system.web using system.web.ui using system.c...