更新记录时出现错误
你可以看看出了什么问题。 这是我的代码:并发冲突:UpdateCommand影响了预期的1条记录中的0条。
Private Sub Button4_Click_1(sender As System.Object, e As System.EventArgs) Handles Button4.Click
Try
Me.Validate()
Me.PrintersBindingSource1.EndEdit()
Me.TableAdapterManager1.UpdateAll(Me.ITPrinterDataSet1)
MsgBox("Update Successfully.")
Catch ex As Exception
System.Windows.Forms.MessageBox.Show(ex.Message)
End Try
End Sub
答案 0 :(得分:0)
检查以下内容:
1-您的表必须至少有一个主键列。
2-最好使用表适配器的“update”方法而不是updateall方法。
3 - 在更新命令之前调用bindingsource的“EndEdit”方法。