程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> ADO.NET批量更新操作

ADO.NET批量更新操作

編輯:更多關於編程

       批量更新操作

      .在上一個版本的ADO.NET當中,SqlDataAdapterde的Update方法將會為 DataSet當中的每一行調用一次更新操作

      .在ADO.NET2.0中,您可以設置UpdateBatchSize屬性,在單步中執行多個更新

      .這樣,可以提高數據更新的效率

      .UpdataBatchSize的默認值為1,使得默認的更新行為與以前版本的ADO.NET一致。

      代碼經驗

      public Form1()

      {

      conn = new SqlConnection(ConfigurationManager.ConnectionStrings["AWConnectionString"].ConnectionString);

      dAdapt = new SqlDataAdapter("SELECT ProductID, Name, ListPrice FROM Production.Product", conn);

      InitializeComponent();

      }

      SqlConnection conn;

      SqlDataAdapter dAdapt;

      DataSet dSet = new DataSet();

      StringBuilder logString = new StringBuilder("");

      private void batchUpdateForm_Load(System.Object sender, System.EventArgs e)

      {

      dAdapt.RowUpdating += new System.Data.SqlClient.SqlRowUpdatingEventHandler(OnRowUpdating);

      dAdapt.RowUpdated += new System.Data.SqlClient.SqlRowUpdatedEventHandler(OnRowUpdated);

      }

      private void getDataButton_Click(System.Object sender, System.EventArgs e)

      {

      dAdapt.Fill(dSet, "Product");

      productGrid.DataSource = dSet.Tables["Product"];

      }

      private void updateDataButton_Click(System.Object sender, System.EventArgs e)

      {

      SqlCommandBuilder cb = new SqlCommandBuilder(dAdapt);

      logString.Remove(0, logString.Length);

      // Enable batching by setting batch size != 1.

      dAdapt.UpdateBatchSize = int.Parse(batchSizeTextBox.Text);

      // Execute the update.

      dAdapt.Update(dSet.Tables["Product"]);

      MessageBox.Show(logString.ToString());

      }

      //handler for the RowUpdating event

      public void OnRowUpdating(object sender, SqlRowUpdatingEventArgs e)

      {

      logString.AppendLine("Starting row update");

      }

      // handler for RowUpdated event

      public void OnRowUpdated(object sender, SqlRowUpdatedEventArgs e)

      {

      logString.AppendLine("Completed row update");

      }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved