濮阳杆衣贸易有限公司

主頁 > 知識(shí)庫 > DataAdapter執(zhí)行批量更新的實(shí)例代碼

DataAdapter執(zhí)行批量更新的實(shí)例代碼

熱門標(biāo)簽:手機(jī)地圖標(biāo)注如何刪除 十堰正規(guī)電銷機(jī)器人系統(tǒng) 怎么給超市做地圖標(biāo)注入駐店 巫師3為什么地圖標(biāo)注的財(cái)寶沒有 寧波自動(dòng)外呼系統(tǒng)代理 世紀(jì)佳緣地圖標(biāo)注怎么去掉 辦理400電話證件 外呼系統(tǒng)代理品牌 外呼系統(tǒng)費(fèi)用一年

在以前版本的 ADO.NET 中,使用 DataSet 中的更改來更新數(shù)據(jù)庫時(shí),DataAdapter 的 Update 方法每次更新數(shù)據(jù)庫的一行。因?yàn)樵摲椒ㄑh(huán)訪問指定 DataTable 中的行,所以,會(huì)檢查每個(gè) DataRow,確定是否已修改。如果該行已修改,將根據(jù)該行的 RowState 屬性值調(diào)用相應(yīng)的 UpdateCommand、InsertCommand 或 DeleteCommand。每一次行更新都涉及網(wǎng)絡(luò)與數(shù)據(jù)庫之間的雙向數(shù)據(jù)傳輸。
    在 ADO.NET 2.0 中,DataAdapter 公開了 UpdateBatchSize 屬性。將 UpdateBatchSize 設(shè)置為正整數(shù)值將使對數(shù)據(jù)庫的更新以指定大小的批次進(jìn)行發(fā)送。例如,如果將 UpdateBatchSize 設(shè)置為 10,會(huì)將 10 個(gè)獨(dú)立的語句組合在一起并作為一批提交。將 UpdateBatchSize 設(shè)置為 0 將導(dǎo)致 DataAdapter 使用服務(wù)器可以處理的最大批次的大小。如果將其設(shè)置為 1,則禁用批量更新,因?yàn)榇藭r(shí)每次發(fā)送一行。
    執(zhí)行非常大的批次可能會(huì)降低性能。因此,在實(shí)現(xiàn)應(yīng)用程序之前,應(yīng)測試最佳的批次大小設(shè)置。
    使用 UpdateBatchSize 屬性
    啟用了批量更新后,DataAdapter 的 UpdateCommand、InsertCommand 和 DeleteCommand 的 UpdatedRowSource 屬性值應(yīng)設(shè)置為 None 或 OutputParameters。在執(zhí)行批量更新時(shí),命令的 FirstReturnedRecord 或 Both 的 UpdatedRowSource 屬性值無效。
    下面的過程演示如何使用 UpdateBatchSize 屬性。該過程采用兩個(gè)參數(shù),一個(gè) DataSet 對象,其中包含代表 PRoduction.ProductCategory 表中的 ProductCategoryID 和 Name 字段的列,一個(gè)代表批次大小的整數(shù)(批次中的行數(shù))。該代碼創(chuàng)建一個(gè)新的 SqlDataAdapter 對象,設(shè)置其 UpdateCommand、InsertCommand 和 DeleteCommand 屬性。該代碼假定 DataSet 對象已修改了行。它設(shè)置 UpdateBatchSize 屬性并執(zhí)行更新。

復(fù)制代碼 代碼如下:

    protected void btnUpdateAddress_Click(object sender, EventArgs e)
    {
    SqlDataAdapter EmpAdapter = new SqlDataAdapter();
    DataTable EmpDT = new DataTable();
    SqlConnection DBConSelect = new SqlConnection();
    SqlConnection DBConUpdate = new SqlConnection();
    SqlCommand SelectCommand = new SqlCommand();
    SqlCommand UpdateCommand = new SqlCommand();
    // Using different connection objects for select and updates from the
    // Northwind database.
    DBConSelect.ConnectionString =
    ConfigurationManager.ConnectionStrings["DSN_NorthWind"].ConnectionString;
    DBConUpdate.ConnectionString =
    ConfigurationManager.ConnectionStrings["DSN_NorthWind"].ConnectionString;
    // Reading all records from the Employees table
    SelectCommand.CommandText = "SELECT top 500 * FROM EMPLOYEES";
    SelectCommand.CommandType = CommandType.Text;
    SelectCommand.Connection = DBConSelect;

 UpdateCommand.CommandText = " UPDATE EMPLOYEES SET Address=@Address, " +
    "City=@City, Region=@Region, Country=@Country";
    UpdateCommand.CommandType = CommandType.Text;
    UpdateCommand.Connection = DBConUpdate;
    SqlParameter AddressParam;
    AddressParam = new SqlParameter("@Address",
    SqlDbType.VarChar, 15, "Address");
    SqlParameter CityParam;
    CityParam = new SqlParameter("@City", SqlDbType.VarChar, 15, "City");
    SqlParameter RegionParam;
    RegionParam = new SqlParameter("@Region", SqlDbType.VarChar, 15, "Region");
    SqlParameter CountryParam;
    CountryParam = new SqlParameter("@Country",
    SqlDbType.VarChar, 15, "Country");
    UpdateCommand.Parameters.Add(AddressParam);
    UpdateCommand.Parameters.Add(CityParam);
    UpdateCommand.Parameters.Add(RegionParam);
    UpdateCommand.Parameters.Add(CountryParam);
    // Setting up Data Adapter with the Select and Update Commands
    // The Select command will be used to retrieve all employee
    // information from the Northwind database and the Update command
    // will be used to save changes back to the database
    EmpAdapter.SelectCommand = SelectCommand;
    EmpAdapter.UpdateCommand = UpdateCommand;
    EmpAdapter.Fill(EmpDT);
    DBConSelect.Close();
    // Looping through all employee records and assigning them the new
    // address
    foreach (DataRow DR in EmpDT.Rows)
    {
    DR["Address"] = "4445 W 77th Street, Suite 140";
    DR["City"] = "Edina";
    DR["Region"] = "Minnesota";
    DR["Country"] = "USA";
    }
    // Adding an event handler to listen to the RowUpdated event.
    // This event will will fire after each batch is executed
    EmpAdapter.RowUpdated +=  new SqlRowUpdatedEventHandler(OnRowUpdated);
    lblCounter.Text = "";
    EmpAdapter.UpdateBatchSize = 100;
    // It is important to set this property for batch processing of
    // updated records since batch updates are incapable of
    // updating the source with changes from the database
    UpdateCommand.UpdatedRowSource = UpdateRowSource.None;
    try
    {
    DBConUpdate.Open();
    EmpAdapter.Update(EmpDT);
    }
    catch (Exception ex)
    {
    lblCounter.Text += ex.Message + "Br>";
    }
    finally
    {
    if (DBConUpdate.State == ConnectionState.Open)
    {
    DBConUpdate.Close();
    }
    }
    }
    private void OnRowUpdated(object sender, SqlRowUpdatedEventArgs args)
    {
    lblCounter.Text += "Batch is processed till row number = " +
    args.RowCount.ToString() + "br>";
    }

標(biāo)簽:天門 牡丹江 嘉興 泰州 通遼 山西 景德鎮(zhèn)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《DataAdapter執(zhí)行批量更新的實(shí)例代碼》,本文關(guān)鍵詞  DataAdapter,執(zhí)行,批量,更,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《DataAdapter執(zhí)行批量更新的實(shí)例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于DataAdapter執(zhí)行批量更新的實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    天水市| 房山区| 伽师县| 潢川县| 玛纳斯县| 洛川县| 米泉市| 临西县| 城市| 饶河县| 漳州市| 长汀县| 安庆市| 北安市| 阜城县| 怀宁县| 宁都县| 玛多县| 南岸区| 海林市| 自贡市| 辽源市| 马山县| 遂昌县| 齐河县| 潞西市| 金平| 佳木斯市| 陆河县| 陇西县| 新安县| 祁连县| 孝昌县| 威远县| 靖宇县| 兰考县| 瑞金市| 米林县| 房产| 罗甸县| 册亨县|