
July 24th, 2000, 12:11 PM
|
|
Gödelian monster
|
|
Join Date: Jul 1999
Location: Pembroke Pines, Florida, USA
|
|
You can export the tables as .CSV files, and and then import them into MySQL, but it is not an easy 'automatic' process. You might be able to write a shell script to take all .CSV files and read them at once.
I think your best bet, though is to use ODBC. MySQL can be connected through an add-on called MyODBC (available at www.mysql.com)
Then, all you would do is create a blank database as an ODBC connection to MySQL, and import your tables from your other Access database. From then on, you would work in the ODBC version of your database as if it was on your workstation. This means that as you work with Access, the database on your server is automatically updated constantly.
Be careful, this has its pros and cons. Always work on a development version of your database first, before backing-up and renaming the database to be your main one. (I know this is obvious, but I have seen many make this mistake.)
Also, MySQL will not necessarily support all of the column types available in Access, such as "Money". You will need to learn the MySQL column types and work with Access accordingly.
|