
Question re updating status of a single record
Using a disconnected ADO recordset, is there any way to update the Status of
a single record so that it becomes adRecUnmodified? (Without connecting to
the database and issuing rs.UpdateBatch, or otherwise updating the
database).
You can do this for the whole recordset by rs.UpdateBatch, but I need to do
it for one record.
You can't update the Status property, and you can't directly update
.OriginalValue.
Any ideas on how to accomplish this would be greatly appreciated.