使用VB2008导入csv文件并保存到sql数据库表
好吧,我已经阅读了很多帖子,但我无法找到问题的完美答案,(或者我已经意识到但没有意识到!:-))
我有一个大的 csv 文件,我想将其读入我的程序中并将其保存到 SQL 数据库表中。
我使用的是VB2008,我的数据库是SQL2008。
任何帮助将不胜感激。
干杯厨师
Well I have read ALOT of posts and I can't quite find the perfect answer to my question, (or I have and havn't realised it!:-))
I have a large csv file that I want to read into my program and sve it to a SQL database table.
I'm useing VB2008 and my dabase is SQL2008.
Any help would be appreciated.
Cheers Cookster
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的&快速的方法是使用 TSQL。
为此,数据库服务器应该可以访问 CSV 文件。
根据您的问题从此处修改的示例。
另一种选择是使用
SQLBulkCopy
。
编辑:如果您可以使用外部库, FileHelpers 可以是选项之一。
A simple & fast way would be using TSQL.
For this to work, the CSV file should be accessible to the DB server.
Example modified per your question from here.
The other option is to use
SQLBulkCopy
.EDIT: If you are OK using an external library, FileHelpers can be one of the option.