Guest Cheung Posted May 30, 2002 Posted May 30, 2002 I am developing a windows application using vb.net. when the applications are running on two different machines at the same time, they can both enquire the same mdb file. However, only the applications started earlier can insert/update/delete the records in the mdb. What can I do so that the applications can update the mdb at the same time (assume there is no conflict in the updates)? Thanks! Quote
Guest Dilyias Posted June 3, 2002 Posted June 3, 2002 Only open a connection when you need it and close it as soon as you are done.. I.e. dont' use a global connection object that is always open. I guess it depends on the nature of the app to see if this is acceptable for performance, etc... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.