filemaker pro通过php导出和导入到mysql

发布于 2024-09-28 07:36:30 字数 149 浏览 7 评论 0原文

谁能建议我指导我访问一个网站,该网站解释了解决此问题的最佳方法,我相信我可以投入大量时间来解决这个问题,但只是寻找一个快速开始。我也不想使用迁移工具,因为我只想将 fmp xml 文件放在服务器上,它会根据提供的 fmpxml 结果创建新的 MySql 数据库,

谢谢

could anyone advise me direct me to a site that explains the best way to go about this I'm sure I could figure it out with allot of time invested but just looking for a jump start. I don't want to use the migration tool either as I just want to put fmp xml files on the server and it create new MySql databases based on the fmpxml results provided

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸短情长 2024-10-05 07:36:30

从技术上讲,您可以编写 XSLT 将 XML 文件转换为 SQL。对于数据(容器字段中的数据除外)而言,这非常简单,但通过一些努力,您甚至可以从 DDR 报告中传输该方案(但我怀疑对于单个项目来说是否值得)。

Technically you can write a XSLT to transform the XML files into SQL. It's pretty much straightforward for data (except data in container fields), but with some effort you can even transfer the scheme from DDR reports (but I doubt it worth it for a single project).

携君以终年 2024-10-05 07:36:30

MySQL 是哪个版本? v6 有 LOAD XML 这将使您的事情变得简单。

如果不是 v6,那么您正在处理存储过程,这可能会很痛苦。如果您需要 v5,可能需要安装 MySQL6,使用 LOAD XML 获取其中的数据,然后执行 mysqldump,您可以将其导入到 v5 中。

这是一个很好的链接:
http://dev.mysql.com/tech -resources/articles/xml-in-mysql5.1-6.0.html

Which version of MySQL? v6 has LOAD XML which will make things easy for you.

If not v6, then you are dealing with stored procedures, which can be a pain. If you need v5, it might make sense to install MySQL6, get the data in there using LOAD XML, and then do a mysqldump, which you can import into v5.

Here is a good link:
http://dev.mysql.com/tech-resources/articles/xml-in-mysql5.1-6.0.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文