I have an Access Db that I load into a DataTable via DataAdapter.Fill, the table has no unique ids much like the following:
1 z
2 a
3 z
3 f
5 y
The problem arise when writing the db back out, the order is incorrect; that is, we get row order 1, 2, 5, 3, 3. Any ideas?