溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何使用DataAdapter執(zhí)行批量更新

發(fā)布時(shí)間:2021-10-11 09:39:56 來(lái)源:億速云 閱讀:125 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)如何使用DataAdapter執(zhí)行批量更新的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

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

感謝各位的閱讀!關(guān)于“如何使用DataAdapter執(zhí)行批量更新”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI