Click here to Skip to main content
15,909,530 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a vb.net application linked to OleDb database.
I want to establish LAN connectivity in it so that it runs in 3 pc and one pc act as server and any pc can update database.
So is this possible?
Posted
Comments
[no name] 9-Jun-14 10:19am    
AFAIK, Access will not work like that. LAN access would only work for databases that are server based. Access is file based. You would need to create a network share for the database.
Member 10804809 13-Jun-14 3:19am    
Ok I got it.
I am trying to convert my whole project in SQl (SDK) file based.
Hope you please help me in that.
One more thing , is there any way to use my application in common share between three pcs?

1 solution

First, Access is a poor choice for a multi-user system.

Second, Access is a file-based database engine and only works so long as the client machines have SMB access (Windows File Sharing) to the Share where the database file is stored. Users will also need Read AND Write access to the share in order to even open the database. This is a security risk.

You're going to have to make sure that appropriate NTFS and Share permissions are set correctly or else you might find someone accidentally, or intentionally, deleted the database file and all the data with it.
 
Share this answer
 
Comments
Member 10804809 13-Jun-14 3:17am    
Its not the problem with the database file.
How can i share with above mentioned SMB access?
Please tell me the method for this.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900