User A and User B are modifying the same column of the same record,while A finishes,the value of the column changes.
How to prevent B from covering the data that A inputs or just show some prompt?
The method I used before is to add a column that marks the 'updating count(increase by 1 on each update)'.Each time before someone updates a column ,he/she will get the mark,so when he/she commits the update,the mark will compare with the database,when different,someone has changed it.
Any other ideas?