捕获并处理 TableAdapter 上的并发违规

发布于 2024-11-29 23:17:50 字数 219 浏览 2 评论 0原文

我正在使用 TableAdapter 连接到我的数据库表。

当我执行更新并且其他人更新了同一行时,我收到并发冲突错误。正如预期的那样。

因此,此时我为用户提供了“保存”或“取消更改”的选项,

如果他们取消,我只需执行“填充”即可获取数据的更新副本,但如果他们想要覆盖怎么办?我实际上如何强制保存数据并覆盖数据库中保存的数据?

I am using a TableAdapter to connect to my database table.

When I perform an Update and someone else has updated the same row I get a concurrency violation error. As expected.

So at this point I give the user the option to Save regardless or Cancel changes

If they cancel I can just performs a Fill to get an updated copy of the data but what if they want to overwrite? How do I actually force a save of the data overwriting the data held in the database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

白首有我共你 2024-12-06 23:17:50

如果您使用 SQLCommandBuilder 生成更新语句,则设置
CommandBuilder.ConflictOption=ConflictOption.OverwriteChanges;
然后再次执行Update()。

If you are using a SQLCommandBuilder to generate your update statements then set
CommandBuilder.ConflictOption=ConflictOption.OverwriteChanges;
and then do the Update() again.

电影里的梦 2024-12-06 23:17:50

右键单击表适配器,单击“在数据集设计器中编辑查询”。

在数据集设计器窗口中,选择 TableAdapter 并转到其属性。

在属性中,展开 Update 语句,然后进入 CommandText 属性。 update命令中的where条件,去掉所有条件,只保留主键列。例如:

UPDATE customer
SET column1 = @column1, column2 = @column2
WHERE pk_column = @pk_column

现在并发异常不会再出现了,因为这个查询将仅根据主键覆盖数据。

Right click table adapter, click 'Edit queries in Dataset designer'.

In the Data set designer window, select TableAdapter and go to its Properties.

In the properties, expand Update statement, and go into CommandText property. In the update command where condition, remove all the conditions and keep only the primary key column. for example:

UPDATE customer
SET column1 = @column1, column2 = @column2
WHERE pk_column = @pk_column

Now the concurrency exception wont appear again, since this query will overwrite the data based on the primary key alone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文