如何使用数据集更新数据库?
我正在尝试使用 DataSet 的内容更新我的数据库,但目前无法使用以下代码执行此操作:
string s = "Select number,name from table where id = 5 and num = 20";
SqlDataAdapter adapter = new SqlDataAdapter(s, con);
adapter.Fill(dset, "ABC");
SqlCommandBuilder sT = new SqlCommandBuilder(adapter);
adapter.Update(dset,"ABC");
此代码不会更新数据库中的 ABC 表。
I am trying to update my database with the contents of a DataSet, but currently am unable to do so with the following code:
string s = "Select number,name from table where id = 5 and num = 20";
SqlDataAdapter adapter = new SqlDataAdapter(s, con);
adapter.Fill(dset, "ABC");
SqlCommandBuilder sT = new SqlCommandBuilder(adapter);
adapter.Update(dset,"ABC");
This code is not updating the ABC table in the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现(使用相关的 OleDbCommandBuilder),无论 MSDN 文档会告诉您什么,您都需要手动设置适配器的 InsertCommand、UpdateCommand 和 DeleteCommand 才能使用它们。
I've found (with the related OleDbCommandBuilder) that despite what the MSDN documention will tell you, you need to manually set the adapter's InsertCommand, UpdateCommand, and DeleteCommand to be able to use those.