i have a VBA application which is spitted into two one for front end; and backend while updating how to prevent two users edit it ??
|
|
|
Access has locking. From Access Help: Specify the locking level used in an Access database in a multiuser environment
|
|||
|
|
|
Yoy may try to invoke pessimistic locking
You will have to implement error handling, because when 2nd client wants to edit and cannot lock the record during timeout, error will be raised. However pessimistic locking is not the best scenario, I would think about optimistic locking and either First Wins or Last Wins strategy Here is an online book Alison Balter's mastering Microsoft Access 2000 development, it should help you. |
|||
|
|