Hi
Its easy to trap errors such as concurrency error when a single table is
involved with code similar to this;
Try
Me.MytblAdpater.Update(DS.Mytbl)
Catch dbcx As Data.DBConcurrencyException
HandleConcurrencyException(dbcx.Row)
End Try
How does one handle concurrency exception with an AdpaterManager where
multiple tables are involved in statement like;
Me.TblAdapterManager.UpdateAll(DS)
In particular how does one know which table or tables and row/rows are in
error?
Thanks
Regards