I am wondering how is a (simpler) way to implement locking in a database driven application (in c# for example, and I refer to either desktop applications or web applications all connecting to a WCF/web service handling the database operations).
I understand from this wiki article http://en.wikipedia.org/wiki/Lock_(computer_science) that I can do optimistic locking which is to check if update were made since last read and throw an error accordingly and ask the user to reread the data and try to update it again. But if there are a bigger number of users doing updates at the same time, the downside is that there can be many update trial and errors.
As a conclusion I think optimistic locking is an option. Is there other options that are not complicated to implement? I think that locking and mutexes are an option but I cannot think of a way to implement the "if" condition to see WHICH record is blocked, such that it does not lead to deadlocks.