T
TheMaxx
ADO 2.0
When i do:
MyRow = MyDataTable.NewMyRow();
MyRow.IdentityField value equals last ID + 1
What if other user is doing the same thing and gets same ID
On DatatTableAdapter.Update both users will try to update with same ID.
I also did not expect IdentityField to have a value (or have it = 0) because
that value should be prvided by SQL Server, not in DataTable in memory ?!
When i do:
MyRow = MyDataTable.NewMyRow();
MyRow.IdentityField value equals last ID + 1
What if other user is doing the same thing and gets same ID
On DatatTableAdapter.Update both users will try to update with same ID.
I also did not expect IdentityField to have a value (or have it = 0) because
that value should be prvided by SQL Server, not in DataTable in memory ?!