I have come up against an unexpected sharp spot in testing my application.
I have simulated another user updating the same record that "user 1" has in edit mode.
The UPDATE transaction I issue updates upon the unique table key AND the last save timestamp columns.
Obviously if the timestamp does not match, the UPDATE can not find a matching row to update.
The Execute method of an ADODB.Command object seems to silently mask this condition.
What would be the solution for getting a reliable pass/fail return code from an UPDATE? Thanks!
I have simulated another user updating the same record that "user 1" has in edit mode.
The UPDATE transaction I issue updates upon the unique table key AND the last save timestamp columns.
Obviously if the timestamp does not match, the UPDATE can not find a matching row to update.
The Execute method of an ADODB.Command object seems to silently mask this condition.
What would be the solution for getting a reliable pass/fail return code from an UPDATE? Thanks!