I'm new to VB6. I'm using VB6 and MS Access as database. Is it possible for multi user to access my MS Access table (mdb) and open/edit/update simotaniously at one time. If yes, how and what is the example code.
Yes it is possible to use MS Access database in a multi-user environment. You will have to put your access DB in a shared location where all the client's (VB programs) can access it.
Use [code]your code here[/code] tags when you post source code
Search here before you post your question, someone might have already asked it before. My Articles
Another thing want to know, is it posible for more than one user to open the same Access (mdb) table at the same time? because i was thinking of developing a small programme where two workstation can open (and manipulate) the same Access table at the same time.
Wrong. Access can handle 3-5 concurrent transactions at a time, and no more. If you have more users, then you need a middle tier to hit the db, and send it to the other tier (users)
Bookmarks