Depends on the version of MySQL.
Here is a good place to start:
http://www.yqcomputer.com/
"... too big for Access..."
I'll assume you meant "too big for MS Jet", as you still intend to use MS
Access as the Front End.
How many users?
What are the logistical considerations?
Anyway, if you migrate the back end:
As long as all table and field names remain unchanged, and the data types
are "basically" similar to what you already have, you should be fine with
your existing interface. Get your tables moved over, backup, delete all
tables, link all back in from the new source. Everything should still
operate, with only a few issues, a couple of which are:
1) If you have autonumbering or backend-driven field auto-population, the
entire record shows "deleted" in all fields just after you leave it, but it
is not actually gone; you just need to requery. However, this in turn
forces the cursor back to the beginning of the record set, which makes it a
bit frustrating. You may consider adding coding auto-requery and to move to
the latest entry or new record row.
2) If you begin to edit a record, but end up making no changes, and forget
to ESCape yourself out of edit mode, you will get a database write conflict
error, but it doesn't mean anything, and nothing is wrong; it just means the
update failed because there were no changes. Problem is, depending on your
design, it may lock up your MS Access interface, especially if you have any
code-based updates with little or no specific error handling. In
straight-forward RAD forms, and direct table/query edits, it won't lock up,
but you will still see the message. Just cancel the update on the dialog.
3) If your logistics are local (no-one off site), and your concurrent user
count is low, you may consider getting MS SQL Desktop Engine (a throttled
lesser version of MS SQL Server), which can be directly accessed similar to
native MS Jet tables, and you lose the previously mentioned issues (and
other issues).
There are more issues and considerations, but you learn as you go. HTH.
Cheers!