ADO.NET数据服务框架怎样与winform的DataGridView集成,实现数据批量增删改处理.

expeditioner 2009-03-25 04:26:35
最近实验ADO.NET数据服务框架,
客户端使用winform方式实现,
使用DataGridView供用户增加、删除、修改数据,将这些操作生成SQL语句,
最后一次性提交到服务器执行,
不知道怎样实现,没有找到对应的解决方案,
向大家请教.
谢谢.
...全文
256 17 打赏 收藏 转发到动态 举报
写回复
用AI写文章
17 条回复
切换为时间正序
请发表友善的回复…
发表回复
xuan.ye 2009-07-02
  • 打赏
  • 举报
回复
adpter 声明 insertcommand,updateCommand,DeleteCommand

代码参考10楼就可以实现
namhyuk 2009-04-03
  • 打赏
  • 举报
回复
原来是说新增的那个Data Service。这方面没研究。帮顶mark一下。
expeditioner 2009-03-31
  • 打赏
  • 举报
回复
WCF技术能够实现吗
悔说话的哑巴 2009-03-30
  • 打赏
  • 举报
回复
SQL
expeditioner 2009-03-30
  • 打赏
  • 举报
回复
搜了很多资料,好像没有 ADO.NET Data Services 与 winform的datagridview实现数据库的CURD处理的案例。
继续研究并期待大家的提示。
stonehy520 2009-03-28
  • 打赏
  • 举报
回复
ADO.NET2.0提供了一个类SQLBLOKCOPY
就是用来处理批量数据的
但是目标库只支持SQL Server
expeditioner 2009-03-27
  • 打赏
  • 举报
回复
谢谢楼上,但这并没有使用 ADO.NET Data Services.
zzxap 2009-03-27
  • 打赏
  • 举报
回复
[code=C#]
使用DataAdapter执行批量更新
2008年11月26日 星期三 17:17
摘自MSDN:
在以前版本的 ADO.NET 中,使用 DataSet 中的更改来更新数据库时,DataAdapter 的 Update 方法每次更新数据库的一行。因为该方法循环访问指定 DataTable 中的行,所以,会检查每个 DataRow,确定是否已修改。如果该行已修改,将根据该行的 RowState 属性值调用相应的 UpdateCommand、InsertCommand 或 DeleteCommand。每一次行更新都涉及网络与数据库之间的双向数据传输。

在 ADO.NET 2.0 中,DataAdapter 公开了 UpdateBatchSize 属性。将 UpdateBatchSize 设置为正整数值将使对数据库的更新以指定大小的批次进行发送。例如,如果将 UpdateBatchSize 设置为 10,会将 10 个独立的语句组合在一起并作为一批提交。将 UpdateBatchSize 设置为 0 将导致 DataAdapter 使用服务器可以处理的最大批次的大小。如果将其设置为 1,则禁用批量更新,因为此时每次发送一行。

执行非常大的批次可能会降低性能。因此,在实现应用程序之前,应测试最佳的批次大小设置。

使用 UpdateBatchSize 属性
启用了批量更新后,DataAdapter 的 UpdateCommand、InsertCommand 和 DeleteCommand 的 UpdatedRowSource 属性值应设置为 None 或 OutputParameters。在执行批量更新时,命令的 FirstReturnedRecord 或 Both 的 UpdatedRowSource 属性值无效。

下面的过程演示如何使用 UpdateBatchSize 属性。该过程采用两个参数,一个 DataSet 对象,其中包含代表 Production.ProductCategory 表中的 ProductCategoryID 和 Name 字段的列,一个代表批次大小的整数(批次中的行数)。该代码创建一个新的 SqlDataAdapter 对象,设置其 UpdateCommand、InsertCommand 和 DeleteCommand 属性。该代码假定 DataSet 对象已修改了行。它设置 UpdateBatchSize 属性并执行更新。


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>";
}
[/CODE]
hndth 2009-03-27
  • 打赏
  • 举报
回复
不懂,up
expeditioner 2009-03-27
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 jijunwu 的回复:]
你的要求是 一次性执行 增加、删除、修改数据吗?


Ado.NET总结有代码和
[/Quote]

谢谢,我是说使用 ADO.NET Data Services 与 DataGridView 实现一次性执行 增加、删除、修改数据.
  • 打赏
  • 举报
回复
你的要求是 一次性执行 增加、删除、修改数据吗?


Ado.NET总结 有代码和
hndth 2009-03-26
  • 打赏
  • 举报
回复
帮顶
expeditioner 2009-03-26
  • 打赏
  • 举报
回复
哪位知道提示提示。
expeditioner 2009-03-25
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 songhtao 的回复:]
一般使用DataAdapter进行批量操作。
[/Quote]

谢谢,DataAdapter怎样与 ado.net数据服务框架 配合使用。
我不懂电脑 2009-03-25
  • 打赏
  • 举报
回复
一般使用DataAdapter进行批量操作。

12,162

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 Web Services
社区管理员
  • Web Services社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧