使用 ADO.NET 将数据表从内存推送到 SQL Server
我的内存中有一个从非 SQL 源获取的数据表。
使用 ADO.NET 将其“按原样推入新的 SQL (2005) 服务器表”,最优雅的方法是什么?
I have a datatable in memory that I got from a non SQL source.
What is the most elegant way, using ADO.NET to push it "as is into a new SQL (2005) server table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要通过一系列步骤来完成此操作。首先,通过一些动态 SQL 创建表。然后,您需要将信息从内存加载到新创建的表中,可能使用
BULK INSERT
。You'd need to do this as a series of steps. Firstly, creating the table via some dynamic SQL. Then you'd need to load the information from memory into the newly created table, potentially using a
BULK INSERT
.或者在 SQL Server 上创建表,一次读取一行,然后将其添加到表中。
Or create the table on the SQL Server, read one row at a time, and add it to the table.