I am using VB.Net with MS Access for Database (Local DB) I am using Databound Controls and strongly typed Dataset generated through Wizard.
My App is Single User / Single Instance Application so no scope of changing of data by any mean by others.
I have few tables in my DB, working with them I found this error occurs on few of them not with all table update.
what I am trying is Adding new record to binding source (by pressing + button on binding navigator) typed field values and Update (by pressing SaveItem button on BindingNavigator)
Public Class Form2
Private Sub InvoicesBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles InvoicesBindingNavigatorSaveItem.Click
Me.Validate()
Me.InvoicesBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.CA_OfficeDataSet)
End Sub
Private Sub CA_OfficeForm2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.InvoicesTableAdapter.Fill(Me.CA_OfficeDataSet.Invoices)
End Sub
End Class
this works fine if I keep adding new Records, but If I try to change value of any record that was just added & press Update button the said Error is thrown. Many Tables have Similar Structure & there forms have Identical code.
Surprising thing here is the Error won't fires with all table update.
I have added different forms for Each table (for Insert / Update / Delete). Performed similar operation adding new record -> saving it -> again changing same record. and found the Concurrency error occurs with few table update and few not.
I found the answer to my question.
Problem is not related to any code.
As I said previously, My app is single user, single instance application using Local MS Access Database for Backend, Neither I was changing any record directly in DB so there was no possibility of Change of data after Update, nor I am using any AutoNumber Field in any Table.