1. ADO.NET的前世今生 ADO.NET的名稱起源於ADO(ActiveX Data Objects),是一個COM組件庫,用於在以往的Microsoft技術中訪問數據。之所以使用ADO.NET名稱,是因為Microsoft希望表明,這是在NET編程環境中優先使用的數據訪問介面。 ADO.NE ...
ADO.NET的名稱起源於ADO(ActiveX Data Objects),是一個COM組件庫,用於在以往的Microsoft技術中訪問數據。之所以使用ADO.NET名稱,是因為Microsoft希望表明,這是在NET編程環境中優先使用的數據訪問介面。
ADO.NET可讓開發人員以一致的方式存取資料來源(例如 SQL Server 與 XML),以及透過 OLE DB 和 ODBC 所公開的資料來源。資料共用的消費者應用程式可使用ADO.NET 來連接至這些資料來源,並且擷取、處理及更新其中所含的資料。
ADO.NETt可將資料管理的資料存取分成不連續的元件,這些元件可分開使用,也可串聯使用ADO.NET也包含 .NET Framework 資料提供者,以用於連接資料庫、執行命令和擷取結果。這些結果會直接處理、放入ADO.NET DataSet 物件中以便利用機器操作 (Ad Hoc)的方式公開給使用者、與多個來源的資料結合,或在各層之間進行傳遞。DataSet 物件也可以與.NET Framework 資料提供者分開使用,以便管理應用程式本機的資料或來自 XML 的資料。
ADO.NET類別 (Class) 位於 System.Data.dll 中,而且會與 System.Xml.dll 中的XML 類別整合。
ADO.NET可為撰寫 Managed 程式碼的開發人員提供類似於ActiveX Data Objects (ADO)提供給原生元件物件模型 (Component Object Model,COM)開發人員的功能。建議使用ADO.NET而非ADO來存取.NET 應用程式中的資料。
ADO .NET會提供最直接的方法,讓開發人員在 .NET Framework 中進行資料存取。
現階段我們以SqlServer
為案例進行講解。
Ado.Net 優點
執行效率高。任何ORM框架(對象關係映射,理解為一種可提高訪問資料庫開發效率的一種框架),在Ado.net 面前都是弟弟, ado.net 作為原裝的直接跟資料庫打交道,直接操作資料庫,沒有進行額外的封裝。比如我們可以直接執行sql語句,直接調用存儲過程。直接操作DataSet數據集等等數據。
缺點:
-
開發效率偏慢
-
缺乏面向對象思想
2. Connection 連接對象
Connection 是資料庫連接對象,用於與資料庫建立連接。SqlServer
連接類是SqlConnection
, MySql 的連接類是MySqlConnection
, Oracle 資料庫連接類是 OracleConnection
,這些類都實現了IDbConnection介面。
1. SqlConnection 類
-
命名空間: System.Data.SqlClient
-
程式集: System.Data.SqlClient.dll
通過Nuget 將 System.Data.SqlClient
程式集引用到項目中
構造方法:
初始化 | |
---|---|
如果給定包含連接字元串的字元串,則初始化 | |
在給定連接字元串的情況下,初始化 |
屬性:
屬性名 | 描述 |
---|---|
ConnectionString | 連接字元串 |
State | 只讀,連接狀態 |
Database | 只讀,當前連接的資料庫 |
ServerVersion | 只讀,當前客戶端連接的SQLServer的版本 |
ConnectionTimeout | 嘗試建立連接時終止嘗試並生成錯誤之前所等待的時間(以秒為單位),預設15秒 |
常用方法:
方法名 | 描述 |
---|---|
Open() | 使用由 |
Close() | 關閉與資料庫之間的連接。 此方法是關閉任何打開連接的首選方法。 |
Dispose() | 執行與釋放或重置非托管資源關聯的應用程式定義的任務。 |
BeginTransaction() | 開始資料庫事務。 |
BeginTransaction(IsolationLevel) | 以指定的隔離級別啟動資料庫事務。 |
BeginTransaction(IsolationLevel,string) | 以指定的隔離級別和事務名稱啟動資料庫事務。 |
CreateCommand() | 創建並返回與 |
-
使用無參構造:
SqlConnection connection = new SqlConnection(); connection.ConnectionString = "server=.;uid=sa;pwd=123456;database=unit21"; connection.Open();// 打開連接 Console.WriteLine($"State={connection.State}"); Console.WriteLine($"DataBase={connection.Database}"); Console.WriteLine($"ServerVersion={connection.ServerVersion}"); Console.WriteLine($"DataSource={connection.DataSource}"); Console.WriteLine($"ConnectionTimeout={connection.ConnectionTimeout}"); connection.Close();// 一定要記得關閉連接
輸出結果:
State=Open DataBase=unit21 ServerVersion=14.00.1000 DataSource=. ConnectionTimeout=15
-
有參構造
SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21"); connection.Open();// 打開連接 Console.WriteLine($"State={connection.State}"); Console.WriteLine($"DataBase={connection.Database}"); Console.WriteLine($"ServerVersion={connection.ServerVersion}"); Console.WriteLine($"DataSource={connection.DataSource}"); Console.WriteLine($"ConnectionTimeout={connection.ConnectionTimeout}"); connection.Close();// 一定要記得關閉連接
2. 修改超時時間
SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30;"); connection.Open(); Console.WriteLine($"ConnectionTimeout={connection.ConnectionTimeout}"); connection.Close();
輸入結果:
ConnectionTimeout=30
3. SqlCredential 類
提供了更安全的方式來指定使用 SQL Server 身份驗證嘗試登錄的密碼。 由用戶 ID 和將用於 SQL Server 身份驗證的密碼構成。
如果調用ChangePassword() 方法修改SqlCredential對象時將會影響連接池 ,因為不對的SqlCredential 實例 將使用不同的連接池,即使用戶 ID 和密碼相同,也是如此 。
如果SqlCredential 對象非空 並且連接字元串中出現如下關鍵字,將會引發
-
Integrated Security = true
-
Password
-
User ID
-
Context Connection = true
winform 案例:
System.Windows.Controls.TextBox txtUserId = new System.Windows.Controls.TextBox(); System.Windows.Controls.PasswordBox txtPwd = new System.Windows.Controls.PasswordBox(); SqlConnection conn = new SqlConnection("server=.;database=unit21;"); SecureString pwd = txtPwd.SecurePassword; pwd.MakeReadOnly(); SqlCredential cred = new SqlCredential(txtUserId.Text, pwd); conn.Credential = cred; conn.Open(); // ... conn.close();
3. 自動釋放(推薦)
using
實現了IDispose 介面的類,都可以使用using 來實現自動釋放資源功能。
/* * * using : 引用命名空間 * using: 釋放資源 * * 1. 為什麼以前我們定義的變數不需要釋放資源呢? * GC: 垃圾回收器,這裡面封裝了一些演算法規定了什麼時候去回收資源。我們自己定義一些變數,不需要關心它有沒有釋放掉,因為GC會幫我們自動回收資源 * * 2. 既然已經有了GC,為什麼還需要手動的釋放資源呢? * 答:GC 只能回收托管資源(由.Net CLR管理的資源),而SqlConnection是屬於非托管資源 * * 3. 我怎麼知道它是非托管? * 答:如果它實現了IDisposable 介面,那麼我們就可以使用using 來手動的釋放資源了 */ using (SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30")) { connection.Open();// 打開連接 Console.WriteLine($"State={connection.State}"); Console.WriteLine($"DataBase={connection.Database}"); Console.WriteLine($"ServerVersion={connection.ServerVersion}"); Console.WriteLine($"DataSource={connection.DataSource}"); Console.WriteLine($"ConnectionTimeout={connection.ConnectionTimeout}"); } // 並未調用close()方法,但會自動關閉
C# 7.0 以後的語法:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open();// 打開連接 Console.WriteLine($"State={connection.State}"); Console.WriteLine($"DataBase={connection.Database}"); Console.WriteLine($"ServerVersion={connection.ServerVersion}"); Console.WriteLine($"DataSource={connection.DataSource}"); Console.WriteLine($"ConnectionTimeout={connection.ConnectionTimeout}");
connection 會在它當前的代碼塊結束處(作用域的結尾)自動調用關閉連接代碼。
4. Command 命令對象
Command 是資料庫命令對象,它是資料庫執行的一個 Transact-SQL 語句或存儲過程 。SqlServer
連接類是SqlCommand
, MySql 的連接類是MySqlCommand
, Oracle 資料庫連接類是 OracleCommand
,這些類都實現了IDbCommand介面。
1. SqlCommand 類
-
命名空間: System.Data.SqlClient
-
程式集: System.Data.SqlClient.dll
構造方法:
初始化 | |
---|---|
使用查詢的文本初始化 | |
使用查詢的文本和 | |
使用查詢文本、 |
常用屬性:
獲取或設置要在數據源中執行的 Transact-SQL 語句、表名或存儲過程。 | |
---|---|
獲取或設置在終止嘗試執行命令並生成錯誤之前的等待時間(以秒為單位)。 | |
獲取或設置一個值,該值指示解釋 | |
獲取或設置 | |
獲取 | |
獲取或設置要在其中執行 |
常用方法:
方法名 | 描述 |
---|---|
嘗試取消 | |
創建 | |
執行與釋放或重置非托管資源關聯的應用程式定義的任務。(繼承自 | |
釋放由 | |
對連接執行 Transact-SQL 語句並返回受影響的行數。 | |
執行查詢,並返回查詢所返回的結果集中第一行的第一列。 忽略其他列或行。 | |
將 |
案例1:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand(); cmd.Connection = connection; cmd.CommandText = $"insert into product values('枸杞',18)"; cmd.ExecuteNonQuery();// 執行
案例2:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand("select count(id) from product"); cmd.Connection = connection; object count = cmd.ExecuteScalar();// 獲取首行首列
案例3:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand("select * from product",connection); using SqlDataReader dataReader = cmd.ExecuteReader(); // 返回一個讀取對象
5. SqlDataReader 數據讀取
提供一種從 SQL Server 資料庫中讀取只進的行流的方式 。 在讀取數據的過程中需要一直與資料庫保持連接,適合數據量小的情況,執行效率還是可以的。 我們將SqlDataReader 讀取數據的方式稱為連接模式。
-
命名空間: System.Data.SqlClient
-
程式集: System.Data.SqlClient.dll
屬性
Connection | 獲取與 |
---|---|
Depth | 獲取一個值,用於指示當前行的嵌套深度。 |
FieldCount | 獲取當前行中的列數。 |
HasRows | 獲取一個值,該值指示 |
IsClosed | 檢索一個布爾值,該值指示是否已關閉指定的 |
Item[Int32] | 在給定列序號的情況下,獲取指定列的以本機格式表示的值。 |
Item[String] | 在給定列名稱的情況下,獲取指定列的以本機格式表示的值。 |
RecordsAffected | 獲取執行 Transact-SQL 語句所更改、插入或刪除的行數。 |
VisibleFieldCount | 獲取 |
方法
Close() | 關閉 |
---|---|
Dispose() | 釋放 |
獲取指定列的名稱。 | |
在給定列名時獲取相應的列序號。 | |
讓 |
還有很多方法,他們都是根據列序列號獲取指定列的功能,如:GetInt(int index),GetFloat(int index),GetDateTime(int index),GetString(int index) .....
案例
案例1:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand("select * from product",connection); using SqlDataReader dataReader = cmd.ExecuteReader(); while (dataReader.Read()) { object id = dataReader.GetValue("id"); object pname = dataReader.GetValue("pname"); object price = dataReader.GetValue("price"); Console.WriteLine($"id: {id}\t pname: {pname}\t price: {price}\t \n"); }
案例2,通過dataReader 索引讀取:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand("select * from product",connection); using SqlDataReader dataReader = cmd.ExecuteReader(); while (dataReader.Read()) { // 索引下標順序必須與資料庫列順序一致 object id = dataReader[0]; object pname = dataReader[1]; object price = dataReader[2]; Console.WriteLine($"id: {id}\t pname: {pname}\t price: {price}\t \n"); }
案例3,封裝成對象:
using SqlConnection connection = new SqlConnection("server=.;uid=sa;pwd=123456;database=unit21;timeout=30"); connection.Open(); using SqlCommand cmd = new SqlCommand("select * from product",connection); using SqlDataReader dataReader = cmd.ExecuteReader(); while (dataReader.Read()) { // 索引下標順序必須與資料庫列順序一致 Product product = new Product( dataReader.GetInt32(0), dataReader.GetString(1), dataReader.GetInt32(2) ); Console.WriteLine($"id: {product.Id}\t pname: {product.Name}\t price: {product.Price}\t \n"); } record Product(int Id,string Name,int Price);
6. SqlDataAdapter 適配器
適配器詳細介紹
-
命名空間: System.Data.SqlClient
-
程式集: System.Data.SqlClient.dll
表示用於填充
一次連接取得數據之後,即可斷開,在用戶非常多的情況下,不會占用太多的連接池資源。 還有一點,就是一次性的從資料庫中取得了數據之後,這些數據是存在記憶體中的,而不會再去操作資料庫,所以你對這些數據做任何的操作,都只是修改記憶體,不會改變資料庫中的內容。
構造方法:
初始化 | |
---|---|
初始化 | |
使用 | |
用 |
屬性:
獲取或設置一個 Transact-SQL 語句或存儲過程,以從數據集刪除記錄。 | |
---|---|