Quote:
If I want to use the DataAdapter and DataSet how can I ensure I only update the db with my DataSet if no other users have updated the same records in the db with their DataSet?
I'm pretty sure locking won't cover what I'm after, as I'm talking about the situation where you access a record (read) then another user accesses the same record, changes it and saves it. The record you are now looking at is the same record but has different data, so if you were to make changes and save it, the changes the other user made would be overwritten.