如何使用数据集更新数据库?

发布于 2024-11-27 00:09:48 字数 340 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万劫不复 2024-12-04 00:09:48

我发现(使用相关的 OleDbCommandBuilder),无论 MSDN 文档会告诉您什么,您都需要手动设置适配器的 InsertCommand、UpdateCommand 和 DeleteCommand 才能使用它们。

        // a is the adapter
        // cb is the commandbuilder
        a.InsertCommand = cb.GetInsertCommand();
        a.DeleteCommand = cb.GetDeleteCommand();
        a.UpdateCommand = cb.GetUpdateCommand();

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.

        // a is the adapter
        // cb is the commandbuilder
        a.InsertCommand = cb.GetInsertCommand();
        a.DeleteCommand = cb.GetDeleteCommand();
        a.UpdateCommand = cb.GetUpdateCommand();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文