Reputation: 13729
I want to share an Access database in the local network (by sharing a folder in the Windows that contains the database).
I want to write an application (C# windows form) that open the shared database then selects, updates and deletes some records.
Several instance of my application will be running in the network (from various computers) and all the instances open the same database.
Does changing an Access database from various computers in the network possible?
Note: I don't want to use SQL SERVER or SQL SERVER EXPRESS, because all the computers in the network are too old and too slow for installing SQL SERVER. Installing and supporting SQL SERVER or SQL SERVER EXPRESS are hard too.
Upvotes: 0
Views: 3130
Reputation: 341
If you are using ODCB driver you can simply give the shared folder on your network and let it use your database and you can run it on all systems
Upvotes: 0
Reputation: 10143
First must Add Mode=Share Deny None
(This will open your database file in full share mode) to connection string for Accessing multiple user,after this you can do this two ways:
share original app with data base in server and add it's folder as virtual drive in other system.
make 3 copy in each system and put DB in server,share it and change connection string to server
Upvotes: 1