捕获并处理 TableAdapter 上的并发违规
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 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.
右键单击表适配器,单击“在数据集设计器中编辑查询”。
在数据集设计器窗口中,选择 TableAdapter 并转到其属性。
在属性中,展开 Update 语句,然后进入 CommandText 属性。 update命令中的where条件,去掉所有条件,只保留主键列。例如:
现在并发异常不会再出现了,因为这个查询将仅根据主键覆盖数据。
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:
Now the concurrency exception wont appear again, since this query will overwrite the data based on the primary key alone.