Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello Guys, Today i have a question that is i have done my application now my clients requirement is that they wanna put database on one location(area) and connect this db to another location.Actually my clients have 3 branches of restaurant they want to use single db in every branches how can i share it is it possible if possible so may i need live ip or it's can work with normal ip address please guys give me your advicee is it possible or not.
Thanks

What I have tried:

Hello Guys, Today i have a question that is i have done my application now my clients requirement is that they wanna put database on one location(area) and connect this db to another location.Actually my clients have 3 branches of restaurant they want to use single db in every branches how can  i share it is it possible if possible so may i need live ip or it's can work with normal ip address please guys give me your advicee is it possible or not.
Thanks
Posted
Updated 6-Jul-17 16:23pm

1 solution

Access if a file-based desktop database. It's not really designed for a multi-user environment, especially like you're describing with multiple sites.

In order that this to work, you have to have a file server at one site and each site would have to have good quality and high-speed network connections between sites. The server would have to have a network share setup (shared folder) to host the database in. You're applications connection string (on every workstation) would have to be modified to point to the database file on the network share.

A better solution would be to setup a SQL Server, move the data to that, and modify your application to use Sql Server data objects instead of OleDb. This works over TCP/IP without needing file shares, better security, and much better performance. It also doesn't need the bandwidth between sites that Access needs.
 
Share this answer
 

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