Great! Write an application for it.
Inside the application,you simply:
- Read the data of the Microsoft access database to a DataTable (See Ado.Net link I provided. Reading data chapter. Access databases can be read with the OleDbDataProvider.
- You can go through all rows and insert them to the MySQL Database.
Regarding import / export: You should consider to not use a DataTable or any other in memory representation if it is not required. It could be quite easy / straight forward to have 2 database connections open. On the first you read with a DbDataReader row
for row and you issue insert commands on the other connection.
With kind regards,
Konrad