Editing Record issues in Access / SQL (Write Conflict)

后端 未结 13 2468
-上瘾入骨i
-上瘾入骨i 2020-12-05 22:44

a problem has come up after a SQL DB I used was migrated to a new server. Now when trying to edit a record in Access (form or table), it says: WRITE CONFLICT: This re

13条回答
  •  时光说笑
    2020-12-05 23:27

    Had this problem, same as the original poster. Even on edit directly using no form. The problem is on bit fields, If your field is Null, it converts Null to 0 when you access the record, then you make changes which this time is the 2nd change. So the 2 changes conflicts. I followed Olivier's suggestion:

    "Make sure the table has a primary key as well as a timestamp column."

    And it solved the problem.

提交回复
热议问题