C#使用ADO.Net部件來(lái)訪問(wèn)Access數(shù)據(jù)庫(kù)的方法
數(shù)據(jù)庫(kù)的訪問(wèn)是所有編程語(yǔ)言中最重要的部分,C#提供了ADO.Net部件用于對(duì)數(shù)據(jù)庫(kù)進(jìn)行訪問(wèn)。我們將從最簡(jiǎn)單易用的微軟Access數(shù)據(jù)庫(kù)入手討論在C#中對(duì)數(shù)據(jù)庫(kù)的訪問(wèn)。
C#中的Connection對(duì)象和Command對(duì)象與Access類似,但在這里我們還將使用其另一個(gè)與RecordSet類似的被稱作ADODataReader的對(duì)象,它負(fù)責(zé)處理與查詢有關(guān)的RecordSet對(duì)象。
首先,必須使用微軟的Access創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)。運(yùn)行Access,創(chuàng)建一個(gè)數(shù)據(jù)庫(kù),但不要?jiǎng)?chuàng)建任何表(我們將在下面的程序中創(chuàng)建表。),保存創(chuàng)建的數(shù)據(jù)庫(kù)。
打開(kāi)控制面板中的ODBC圖標(biāo),點(diǎn)擊System DNS標(biāo)簽,依次選擇Add>Microsoft Access,并點(diǎn)擊Finish按鈕。在拉下來(lái)的對(duì)話框中輸入數(shù)據(jù)源的名字,比如是mymdb,然后創(chuàng)建數(shù)據(jù)源,雙擊OK按鈕。
在下面的程序中,我們將創(chuàng)建一個(gè)表,并在其中插入一些值。
程序非常地簡(jiǎn)單和直觀。在Main()函數(shù)中,ADOConnection對(duì)象將數(shù)據(jù)源的名字取到構(gòu)造器中,然后使用ADOConenction的Open()方法打開(kāi)該連接。
在連接建立后,程序?qū)?chuàng)建包含二個(gè)字段的表a1,其中字段name的類型為字符型,vno的類型為整型。Create table命令已經(jīng)放在ADOCommand的構(gòu)造器中,ExecuteNonQuery()方法用于執(zhí)行這一查詢,該方法不會(huì)返回任何記錄集。同樣,Insert和Delete查詢也可以放到ADOCommand的Constructor中,因此可以象在VB中那樣傳遞任何SQL查詢。
ADODataReader是新出現(xiàn)的,它是本段程序中主要的對(duì)象,負(fù)責(zé)處理ADOCommand返回的記錄集。使用xecute()方法,就可以看到從數(shù)據(jù)庫(kù)中返回的數(shù)據(jù)。ADODataReader的Read()方法則返回布爾型的值,TRUE標(biāo)志著數(shù)據(jù)在ADODataReader對(duì)象中,而且將當(dāng)前指針移動(dòng)到了ADODataReader對(duì)象的下一條記錄上。
使用Visual Studio.Net 編譯下面的程序代碼。
namespace database1
{
using System;
using System.Data.ADO;
public class Class1
{
public Class1()
{
//
// 在這里添加Constructor的邏輯
//
}
public static int Main(string[] args)
{
try
{
ADOConnection s = new ADOConnection("Data Source=mymdb");
s.Open();
Console.WriteLine("Connection Established");
//創(chuàng)建表
Console.Write("Want to Create a Table?(y/n) ");
string ch = Console.ReadLine();
if (ch == "y")
{
ADOCommand CreateTable = new ADOCommand("Create Table a1(vno integer,name char(20))", s);
CreateTable.ExecuteNonQuery();
Console.WriteLine("AOCommand Executed / Table Created");
}
//在表中插入值
Console.Write("Want to Insert Some values in a Table?(y/n) ");
ch = Console.ReadLine();
if (ch == "y")
{
ADOCommand InsTable = new
ADOCommand("insert into a1 values(1, 'hi')", s);
InsTable.ExecuteNonQuery();
Console.WriteLine("Values Inserted");
}
//刪除整個(gè)表
Console.Write("Want to Delete All Records Present in the Table?(y/n) ");
ch = Console.ReadLine();
if (ch == "y")
{
ADOCommand DeleteTable = new ADOCommand("Delete from a1", s);
DeleteTable.ExecuteNonQuery();
Console.WriteLine("All Records Deleted From the Table");
}
//看所有記錄
Console.Write("Want to See all the Records Present in the Table /Database (y/n)? ");
ch = Console.ReadLine();
if (ch == "y")
{
ADOCommand AllRecs = new ADOCommand("select * from a1", s);
ADODataReader r;
AllRecs.Execute(out r);
while(r.Read())
{
for(int i=0; i < r.FieldCount;i++)
{
Console.Write(r.GetValue(i)+ " ");
}
Console.WriteLine();
}
Console.WriteLine("All Records Displayed");
r.Close();
}
s.Close();
Console.ReadLine();
}
catch(System.Exception e)
{
Console.WriteLine(e.ToString());
Console.ReadLine();
}
return 0;
} // Main函數(shù)結(jié)束
} // Class結(jié)束
}// 名字空間結(jié)束
以上就是 在C#中使用ADO.Net部件來(lái)訪問(wèn)Access數(shù)據(jù)庫(kù)的過(guò)程,希望對(duì)大家的學(xué)習(xí)有所幫助。
- C#編程實(shí)現(xiàn)連接ACCESS數(shù)據(jù)庫(kù)實(shí)例詳解
- C#通過(guò)oledb訪問(wèn)access數(shù)據(jù)庫(kù)的方法
- C#動(dòng)態(tài)創(chuàng)建Access數(shù)據(jù)庫(kù)及表的方法
- C#數(shù)據(jù)庫(kù)操作類AccessHelper實(shí)例
- c#連接access數(shù)據(jù)庫(kù)操作類分享
- C# Access數(shù)據(jù)庫(kù)增刪查改的簡(jiǎn)單方法
- c# 連接access數(shù)據(jù)庫(kù)config配置
- 利用C#遠(yuǎn)程存取Access數(shù)據(jù)庫(kù)
- C# 操作 access 數(shù)據(jù)庫(kù)的實(shí)例代碼
相關(guān)文章
c#中的浮點(diǎn)型轉(zhuǎn)整形的舍取 四舍五入和銀行家舍入實(shí)現(xiàn)代碼
c#中的浮點(diǎn)型轉(zhuǎn)整形的舍取 四舍五入和銀行家舍入實(shí)現(xiàn)代碼,學(xué)習(xí)c#的朋友可以參考下2012-03-03
Win10 系統(tǒng)下VisualStudio2019 配置點(diǎn)云庫(kù) PCL1.11.0的圖文教程
這篇文章主要介紹了Win10 系統(tǒng)下VisualStudio2019 配置點(diǎn)云庫(kù) PCL1.11.0的圖文教程,本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-07-07
C#實(shí)現(xiàn)DataTable轉(zhuǎn)TXT、CSV文件
這篇文章介紹了C#實(shí)現(xiàn)DataTable轉(zhuǎn)TXT、CSV文件的方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-04-04
http圖片上傳安全性問(wèn)題 根據(jù)ContentType (MIME) 判斷其實(shí)不準(zhǔn)確、不安全
圖片上傳常用的類型判斷方法有這么幾種---截取擴(kuò)展名、獲取文件ContentType (MIME) 、讀取byte來(lái)判斷(這個(gè)什么叫法來(lái)著?)。下面由腳本之家小編跟大家分享圖片上傳安全性問(wèn)題,感興趣的朋友一起看看吧2015-09-09
C#利用正則表達(dá)式實(shí)現(xiàn)獲取字符串中漢字的數(shù)量
這篇文章主要為大家詳細(xì)介紹了C#如何利用正則表達(dá)式實(shí)現(xiàn)獲取字符串中漢字的數(shù)量,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2024-01-01
Unity實(shí)現(xiàn)鼠標(biāo)點(diǎn)2D轉(zhuǎn)3D進(jìn)行旋轉(zhuǎn)

