// 讀取 Access需使用OLEDB using System.Data.OleDb; /// summary /// 讀取 Access 數(shù)據(jù) 庫 /// /summary private void ReadAccessData() { // 1、建立連接 string sAccessConnection = @ Provider=Microsoft.Jet.OLEDB.4.0;DataSource=E:\BegVCSharp\Reade
//讀取Access需使用OLEDB
usingSystem.Data.OleDb;
///
/// 讀取Access數(shù)據(jù)庫
///
private void ReadAccessData()
{
//1、建立連接
string sAccessConnection
= @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\BegVCSharp\ReaderAccess\ReaderAccess\nwind.mdb";
OleDbConnection odcConnection = new OleDbConnection(sAccessConnection);
//2、打開連接
odcConnection.Open();
//建立SQL查詢
OleDbCommand odCommand = odcConnection.CreateCommand();
//3、輸入查詢語句
odCommand.CommandText = "select customerID,companyName from Customers";
//建立讀取
OleDbDataReader odrReader = odCommand.ExecuteReader();
//查詢并顯示數(shù)據(jù)
while (odrReader.Read())
{
//顯示取出值(具體顯示方式可由自己定義)
tbValue.Text += "\r\t";
tbValue.Text += odrReader["CustomerID"].ToString().PadRight(10, ' ');
tbValue.Text += odrReader["CustomerID"].ToString();
}
//關(guān)閉連接
odrReader.Close();
odcConnection.Close();
}
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com