TableAdapter 不更新 DataTable 中的内存值
我有一个带有设计者构建的 .Update()
命令的 TableAdapter。 TableAdapter 还有一个命令,该命令将仅更新其中一条记录中的一个字段。该命令是.AddBankName
。
但是 .AddBankName
似乎导致 .Update()
引发并发冲突。仅当 .AddBankName
实际上更改数据库中的 BankName 字段时才会发生这种情况。
因此,我认为发生的情况是 TableAdapter 中的 AddBankName
查询没有更新 TableAdapter 维护的数据库表的内存记录。
如何使 AddBankName
进行正确的更新。或者 - 我自己该怎么做?
这是我的代码的摘录。 UpdateDB
可以多次调用...
Sub UpdateDB()
'This Update will fail if AddBankName has previously changed BankName
LETTERINFORMATIONTableAdapter.Update(tblTECHLETTERINFORMATION)
LETTERINFORMATIONTableAdapter.AddBankName(cmbBANKNAME.Text, _
txtCLIENTNUMBER.Text)
End Sub
I have a TableAdapter with a designer-built .Update()
command. The TableAdapter also has a command which will update just one of the fields in one of the records. This command is .AddBankName
.
However .AddBankName
appears to be causing .Update()
to throw a Concurrency violation. This is only happening if .AddBankName
is actually changing the BankName field in the DB.
So what I presume is happening is that the AddBankName
query in the TableAdapter is not updating the in memory record of the database table which the TableAdapter maintains.
How can I make AddBankName
do the correct update. Or - how do I do it myself?
This is an excerpt of my code. UpdateDB
can be called multiple times...
Sub UpdateDB()
'This Update will fail if AddBankName has previously changed BankName
LETTERINFORMATIONTableAdapter.Update(tblTECHLETTERINFORMATION)
LETTERINFORMATIONTableAdapter.AddBankName(cmbBANKNAME.Text, _
txtCLIENTNUMBER.Text)
End Sub
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论