从 MySQL 导入和导出 filemaker
我的数据库是MySQL V5。我想使用 File Maker pro 11 将数据导入和导出到 MySQL,而不创建任何文件。即我希望 File Maker 和 MySQL 之间直接连接。 请帮我......
I have database in MySQL V5. I wants to import and export data to MySQL using File Maker pro 11 without creating any file.i.e. I want direct connection between File Maker and MySQL.
Please help me......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我强烈推荐 开源数据库 ODBC 驱动程序,来自 实际技术。它是一个 Mac OS X ODBC 驱动程序,我曾多次使用它来将 FileMaker 连接到 MySQL 数据库。使用它,您可以创建一个“影子表”,该表实际上显示来自 MySQL 数据库的数据,并使用 导入 和 导出。这就是 Sam 所说的 ESS。对于 Windows 等效项,请参阅 FileMaker 的 ODBC 驱动程序列表。
I can highly recommend the Open Source Databases ODBC driver from Actual Technologies. It's a Mac OS X ODBC driver that I've used it on multiple occasions to connect FileMaker to a MySQL database. With it you can create a "shadow table" that actually shows data from the MySQL database and import from a FileMaker table to a MySQL table using the standard script steps for import and export. This is the ESS that Sam was speaking of. For the Windows equivalent, see FileMaker's list of ODBC drivers.
我们有一个 JDBC 插件。您可以在 MySQL 数据库上执行 SELECT 查询,然后循环返回的行并读取值。它还支持将 SELECT 转储到 txt 文件,然后您可以导入该文件。
为了导入 MySQL,最好的选择是执行 INSERT/UPDATE 查询。
另外,您可以考虑使用 ESS,这是 FileMaker 的内置方式与 MySQL 对话。
We have a JDBC Plugin for that. You can do a SELECT query on your MySQL DB, then loop over the returned rows and read values out. It also supports dumping the SELECT to a txt file, which you can then import.
For importing into MySQL, your best bet is to do INSERT/UPDATE queries.
Also, you might consider using ESS, which is FileMaker's built-in way of talking to MySQL.