SEVERAL USERS ACCESSING THE SAME REGISTRY

Hello everyone!!!
I have an application that manages a small fleet of trucks. From the office the trips that have to be made are assigned and everything works quite well.
The problem arises when a user modifies a record and, from another terminal, the same record is modified a short time later, the data that the first user registered is lost and only the data of the second modification of the record remains.
Is there a way to “check” that the record being modified hasn’t already been modified by another user?
Thanks for the help!!!

Nope.

Consider restructuring you data so that the parts that produce these conflicting changes are stored as rows of a different table.

3 Likes

Thanks Steve!!!

1 Like