Comment on The surprisingly difficult problem of user-defined order in SQLparentComments−recursive5yJust make sure there's no competing edits going on at the time that might cause a race.−tehjoker5yThat's what a transaction is for.−bboreham5yEdits are done by the UI. You do transactions in your UI?−recursive5yI do transactions for sensitive edits that are triggered from the UI. The UI itself doesn't have a database connection though.
Comments
Just make sure there's no competing edits going on at the time that might cause a race.
That's what a transaction is for.
Edits are done by the UI. You do transactions in your UI?
I do transactions for sensitive edits that are triggered from the UI. The UI itself doesn't have a database connection though.