Re: How do I handle people going into the same record at the same in web app.
Posted by Chung Leong on 05/20/06 01:46
Jerry Stuckle wrote:
> Keep the original values. Before updating, read the record in again and compare
> the values to the old ones. If they don't match, put the window back up with
> the new values and tell the user.
Or just add the original value to the where clause of the update
statement. It's easier, probably fast, and avoids a race condition.