posted 16 years ago
Regardless of the OS, MS Access is a very bad choice for a web backend database. It isn't designed to be able to respond to multiple concurrent users.
Unlike the more powerful DBMS's, such as SQL Server, Oracle and the open-source systems like MySQL and PostgreSQL, MS Access doesn't run a server process that can listen for incoming requests on a network port. So the only way to access it from a remote system is to use remote file access and open the file directly as a network shared file. Or to front it with something like a local web server. And, since most web servers are expected to be able to run multiple concurrent requests, they won't have any built-in way to avoid corrupting the Access database.
There are ways to open and read access databases from Linux, but they are somewhat limited. This is partly because the internal structure of MDB files has changed drastically over the years. In fact, one of my biggest problems using Access on a Windows system came from having Office expecting one file format and my other tools expecting another one.
Experience keeps a dear School, but Fools will learn in no other.
---
Benjamin Franklin - Postal official and Weather observer