读取Gedcom文件并存储在数据库中

发布于 2024-10-30 13:43:56 字数 136 浏览 1 评论 0原文

我想读取 Gedcom 文件并存储在 sql server 中。 GEDCOM 是一种文件格式,允许在不同的家谱软件应用程序之间共享家谱文件。 GEDCOM 代表 GEneaological 数据通信。

任何人都可以帮助我解决这个问题吗???

I want to read a Gedcom file and store in sql server .
GEDCOM is a file format which allows genealogy files to be shared between different genealogy software applications. GEDCOM stands for GEnealogical Data COMmunications.

Can any one help me on this issue ???

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

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

发布评论

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

评论(3

终遇你 2024-11-06 13:43:56

我发现在 SQLServer 中查询 GEDCOM 数据的一种简单方法是使用 附带的导入/导出功能系谱大师申请。宗谱大师允许您将数据导出到 csv。获得 csv 格式的数据后,您可以使用 SQLServer 的数据转换服务向导将其导入。

我确实已经成功地将数据从 The Master Geneaists 导出到 SQLServer,但尚未测试 GEDCOM 导入功能。

否则,您可以随时查看 GenealogyJ 代码库并查看 GEDCOM 阅读器 那里。如果您不喜欢 java,请尝试使用 perl Gedcom 模块。

One easy way I've found to query GEDCOM data in SQLServer is to use the import / export features that come with The Master Genealogist application. The Master Genealogist lets you export data to csv. Once you have the data in csv you can then use the Data Transformation Services wizards of SQLServer to import it.

I've certainly had success exporting data from The Master Genealogist into SQLServer but have not as yet tested the GEDCOM import feature.

Otherwise, you could always checkout the GenealogyJ codebase and take a look at the GEDCOM reader there. If java is not to your liking try the perl Gedcom module instead.

花开浅夏 2024-11-06 13:43:56

Oxy-Gen 是一个工具,可让您转换为以下格式:

  • HTML(浏览器显示)
  • CSV(Excel、Open Office...)
  • SQL(Oracle)
  • MySQL(PHP)
  • XML(机器 2 机器)

如果您不需要自动导入/导出功能,此工具应该适合您的需求。

如果您确实需要自动导入/导出功能,您可能需要寻找采用您​​选择的编程语言的 GEDCOM 解析库。

Oxy-Gen is a tool that allows you to convert to the following formats :

  • HTML (Browser display)
  • CSV (Excel, Open Office, ...)
  • SQL (Oracle)
  • MySQL (PHP)
  • XML (machine 2 machine)

If you don't need automatic import/export features, this tool should suit your needs.

If you do need automatic import/export features, you might want to look for a GEDCOM parsing library in the programming language of your choice.

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