I have a problem that adding ( overwriting existing 123 key) does not work, how to force updating a row if conflict occurs?
db.OpenRecordset("table1", dbOpenTable)
.AddNew ' create a new record
.Fields("key") = "123"
.Update ' stores the new record
code works when DB does not have key 123 yet