I am wondering what is the best, most efficient way to make this transition from an MS Access backend to a MySQL backend when it comes to multiple users accessing the database.
Currently, there are about 20 users that use this Access database in a shared folder. If I migrate the backend to MySQL and link the tables using ODBC, I have that I will need to install the MySQL ODBC driver on all of these users' devices.
This doesn't seem like that great of a solution, since if a user gets a new device, a new user needs access, etc., they will also have to install a MySQL ODBC driver to use the database.
Or, does it work that only 1 user needs the driver installed. Then, this user can link the frontend database to the backend. Now since the database is linked, other users can use it without requiring an MySQL ODBC driver?
I am aware that with this many users, the application should be migrated to a web solution, but that is not an option right now.