Converting MySQL to MS Access

空扰寡人 提交于 2020-01-11 10:52:25

问题


I have a table in MySQL with a large amount of data that I would really rather not manually copy accross to MS Access. In simple terms how would I convert the Table from MySQL to the MS Access.

Thanks in advance!

S


回答1:


One option is to use ODBC. Use Access to pull in the data from MySQL.

  • Install the MySQL ODBC driver.
  • Create a system DSN for the MySQL database.
  • Create a new Access database.
  • Find the approprate Access menu command for importing external data. This will depend on your version of Access. A2010 has a ribbon menu called "External Data".
  • select the ODBC data source (Machine Data Source) using the DSN you created.
  • select the tables you need, and proceed with the import.




回答2:


One simple approach is to export the table to CSV format from MySQL and import it into Access from CSV using the data import wizard.

MySQL to CSV

http://www.electrictoolbox.com/mysql-export-data-csv/

CSV to Access

http://www.brighthub.com/computing/windows-platform/articles/27511.aspx



来源:https://stackoverflow.com/questions/5465661/converting-mysql-to-ms-access

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!