本篇文章給大家分享的是有關(guān)C#中Connection對(duì)象的作用是什么,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
臨河ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
首先,必須使用微軟的Access創(chuàng)建一個(gè)數(shù)據(jù)庫。運(yùn)行Access,創(chuàng)建一個(gè)數(shù)據(jù)庫,但不要?jiǎng)?chuàng)建任何表(我們將在下面的程序中創(chuàng)建表。),保存創(chuàng)建的數(shù)據(jù)庫。
打開控制面板中的ODBC圖標(biāo),點(diǎn)擊System DNS標(biāo)簽,依次選擇Add>Microsoft Access,并點(diǎn)擊Finish按鈕。在拉下來的對(duì)話框中輸入數(shù)據(jù)源的名字,比如是mymdb,然后創(chuàng)建數(shù)據(jù)源,雙擊OK按鈕。
在下面的程序中,我們將創(chuàng)建一個(gè)表,并在其中插入一些值。
程序非常地簡(jiǎn)單和直觀。在Main()函數(shù)中,C# Connection對(duì)象將數(shù)據(jù)源的名字取到構(gòu)造器中,然后使用ADOConenction的Open()方法打開該連接。
在連接建立后,程序?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ù)庫中返回的數(shù)據(jù)。ADODataReader的Read()方法則返回布爾型的值,TRUE標(biāo)志著數(shù)據(jù)在ADODataReader對(duì)象中,而且將當(dāng)前指針移動(dòng)到了ADODataReader對(duì)象的下一條記錄上。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#中Connection對(duì)象的作用是什么,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。