使用 DataSet 创建包含填充数据的 SQL Server 动态表

发布于 2024-09-08 11:28:18 字数 205 浏览 1 评论 0原文

我有一个包含多个表(不同架构)的数据集。

我想在 SQL Server 2005 上生成表架构并将数据插入到动态创建的表中。

表名称应该是DataTable的名称(它是唯一的,即data0、data1,...)

有没有办法将其插入到SQL Server数据库中,而无需逐行遍历DataTable(使用xml)?任何代码示例或链接都很棒。非常感谢大家

I have a DataSet with multiple tables (distinct schema).

I want to generate table schema on SQL Server 2005 and insert data into the dynamically created table.

Table name should be the name of DataTable (which is unique i.e. data0, data1, ...)

Is there a way to insert it in to the SQL Server database without going through DataTable row by row (using xml)? Any code samples or links would be great. Thank you all very much

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

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

发布评论

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

评论(1

白首有我共你 2024-09-15 11:28:18

您必须在数据库中自己创建的架构
不过,您可以使用 SqlBulkCopy 类一次性将数据表中的数据放入数据库中。

在此处查看文章

The schema you have to create yourself in the DB
However you can use the SqlBulkCopy class to put the data from the datatable in the database in one pass.

See article here

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