如何将 XML 文件转换为数据库?

发布于 2024-07-29 18:19:33 字数 60 浏览 7 评论 0原文

我最近下载了 SO 数据转储,并想知道如何将其从 XML 转换为可以在 .NET 应用程序中使用的数据库。

I recently downloaded the SO Data Dump and was wondering how I could convert it from XML to a DB that I could use in my .NET applications.

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

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

发布评论

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

评论(5

桜花祭 2024-08-05 18:19:33

这是一篇 wiki 文章,描述了使用存储过程将 XML 数据转储转换为数据库。

SQLServerPedia 站点 包含许多与 SO 相关的其他文章 -

Here's a wiki article describing the process of converting the XML data dump to a database by using stored procedures.

SQLServerPedia site contains many other articles related to SO -

审判长 2024-08-05 18:19:33

您可以尝试XML 批量加载

You could try XML Bulk Load.

撩发小公举 2024-08-05 18:19:33

您可以使用 DataSet.ReadXml 方法 将其转换为 DataSet 并将数据表插入数据库

you can convert it to DataSet using DataSet.ReadXml Method and that insert datatables to database

燕归巢 2024-08-05 18:19:33

C# 本身就可以很好地处理 XML。 除非有大量 XML,否则只需使用 LINQ to XML

如果您有大量 XML,那么以流模式处理它可能比将其放入数据库中的工作量要少

C# handles XML natively very well. Unless there is a large amount of XML, simply use LINQ to XML.

If you have large amounts of XML, then handling it in streaming mode is proably less work than putting it in a DB

弥繁 2024-08-05 18:19:33

嗯,只需使用 XML 解析器,并按照您的意愿创建数据库模式...您也可以直接将 xml 映射到数据库...
http://en.wikipedia.org/wiki/XML_database
多读点书……真的……

Hm, just use a XML parser, and make the database schema as you wish...you can also map the xml to a database directly...
http://en.wikipedia.org/wiki/XML_database
Do some more reading...really..

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