使用 DataSet 创建包含填充数据的 SQL Server 动态表
我有一个包含多个表(不同架构)的数据集。
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在数据库中自己创建的架构
不过,您可以使用 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