SqlCommandBuilder

ection ection ection

作用:c#中用來批量更新資料庫
用法:一般和adapter結合使用。
例:
SqlConnection conn = new SqlConnection(strConnection));//連線資料庫
DataSet ds=new DataSet();
SqlDataAdapter myAdapter = new SqlDataAdapter();//new一個adapter對象
adapter.SelectCommand = new SqlCommand("select * from "+strTblName),(SqlConnection) conn); //cmd
SqlCommandBuilder myCommandBuilder = new SqlCommandBuilder(myAdapter); //new 一個 SqlCommandBuilder
myAdapter.Fill(ds);
myAdapter.InsertCommand = myCommandBuilder .GetInsertCommand();//插入
myAdapter.UpdateCommand = myCommandBuilder .GetUpdateCommand();//更新
myAdapter.DeleteCommand = myCommandBuilder .GetDeleteCommand();//刪除
conn.Open();//打開資料庫
myAdapter.Update(ds); //更新ds到資料庫
conn.Close();//關閉資料庫
何時使用:
a. 有時候需要快取的時候,比如說在一個商品選擇界面,選擇好商品,並且進行編輯/刪除/更新後,
最後一併交給資料庫,而不是每一步操作都訪問資料庫,因為客戶選擇商品可能進行n次編輯/刪除
更新操作,如果每次都提交,不但容易引起資料庫衝突,引發錯誤,而且當數據量很大時在用戶執行
效率上也變得有些慢
b.有的界面是這樣的有的界面是這樣的,需求要求一定用快取實現,確認之前的操作不提交到庫,點擊
頁面專門提交的按鈕時才提交商品選擇信息和商品的其它信息. 我經常遇到這樣的情況
c.有些情況下只往數據庫里更新,不讀取. 也就是說沒有從資料庫里讀,SqlDataAdapter也就不知道是
更新哪張表了,調用Update就很可能出錯了。這樣的情況下可以用SqlCommandBuilder 了
(此段參考了他人所作)
d.在使用adapter的時候如果不是用設計器的時候,並且要用到adapter.Update()函式的時候,這時候要注意
SqlCommandBuilder必須要有
常見錯誤:
一些初學者經常會在使用adapter的時候忘了使用SqlCommandBuilder,即使用了也會忘了用
myAdapter.UpdateCommand = myCommandBuilder .GetUpdateCommand();//更新,
還自以為是很對,感覺煩躁不可救藥。
摘自msdn
The following example uses the Derived class, OleDbDataAdapter, to update the data source.
C#
public DataSet CreateCmdsAndUpdate(string connectionString, string queryString)
{
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
OleDbDataAdapter adapter = new OleDbDataAdapter();
adapter.SelectCommand = new OleDbCommand(queryString, connection);
OleDbCommandBuilder builder = new OleDbCommandBuilder(adapter);
connection.Open();
DataSet customers = new DataSet();
adapter.Fill(customers);
//code to modify data in dataset here
adapter.Update(customers);
return customers;
}
}

相關詞條

相關搜尋

熱門詞條

聯絡我們