从应用程序中的数据集导入/导出的最佳方法是什么?
我需要能够在正在开发的应用程序中从数据库导入和导出数据。我一直无法找到正确的方法来做到这一点。我必须假设一些使用此功能的人没有安装 Office,因此此过程必须能够自行运行。
我将 Visual Basic Express 与 SQL Server 2008 一起使用。将 LINQ to SQL 与本地数据库一起使用。
我希望这对于用户来说是一个简单的过程。任何来源或帮助将不胜感激!
I need to be able Import and Export data from my database in the app im developing. I have been having trouble finding the proper way to do this. I have to assume some of the people using this wont have Office installed so this process has to be able to work on its own.
Im using Visual Basic Express with SQL server 2008. Using LINQ to SQL with a local database.
I would like it to be a simple process for the users. Any sources or help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您可以将数据放入 DataTable 中,您可以使用 SQLBulkCopy:
http://msdn.microsoft.com/en-us /library/system.data.sqlclient.sqlbulkcopy.aspx
SQLBulkCopy 会将数据从 DataTable 上传到 SQL Server 表中。
Assuming you can get your data into a DataTable you could use SQLBulkCopy:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx
SQLBulkCopy will upload your data from the DataTable into a SQL Server table.