0

我想知道这是否是一种不好的做法。我有一页 50 行的数据网格,每行大约有 10 个文本框。页面功能非常简单,只需一个按钮即可在 ms sql 中更新和保存。当用户单击按钮时,需要很长时间才能保存。我在带有隐藏 id 字段 id 的 sql 循环中使用更新。简单更新表的最佳方法是什么?

  for (int i=0; i<options_bind.Items.Count; i++) 

 {

 if (((CheckBox)options_bind.Items[i].FindControl("check_Save")).Checked )
     { 
      call sql update one by one here
     }

    }
4

1 回答 1

1

使用SqlCommanBuilder将数据绑定到 datagridview

        sqlDataAdapter = new SqlDataAdapter(selectQueryString, sqlConnection);
        sqlCommandBuilder = new SqlCommandBuilder(sqlDataAdapter);

        dataTable = new DataTable();
        sqlDataAdapter.Fill(dataTable);
        bindingSource = new BindingSource();
        bindingSource.DataSource = dataTable;

        yourDataGridView.DataSource = bindingSource;

然后在更新事件

           try
            {
                sqlDataAdapter.Update(dataTable);
            }
           catch (Exception exceptionObj)
            {
                MessageBox.Show(exceptionObj.Message.ToString());
            }
于 2013-02-01T06:27:07.480 回答