2

I have my site running on one server(PHP) say site-1 and there is other site which is running on other server say site-2.

So i need to connect to MS Access DB located on site-2 from site-1.

how can I do that?

2
  • May be of interest: stackoverflow.com/questions/1214826/… Commented Jan 17, 2011 at 12:36
  • With that is the possible to connect remote MSaccess from linux to Apache? Commented Jan 17, 2011 at 12:42

1 Answer 1

1

It's possible, but you won't do it without extra libraries. Access is a file-based database. There's no "server" to connect to. And Microsoft is NOT going to be providing a Linux/Unix-based connection library to let you actually talk to that .mdb file, so you'll have to go 3rd party, which probably means $$$.

And in any case, while Access is ok for low-volume light-traffic duty, you most likely do not want to use it for any reasonably large site (say, 5 or more concurrent users). It's not intended for that kind of duty. If the data store size isn't too big, you can upgrade to SQL Server Express, which is basically a fully functional SQL Server, but limited to 10gig (I think, going off pre-coffee memory) total data size.

Sign up to request clarification or add additional context in comments.

1 Comment

SQL Server 2008 R2 bumped the MDF file size to 10GBs. Previous to that, the limitation was 4GBs, which was twice the max for MDB/ACCDB.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.