将.txt数据转为.sdf 使用Visual C#显示
我正在使用 Visual c#express 2008。
我有一个巨大的文本文件,其中包含与此类似的数据:“text/text/text/text”
我正在使用分隔符来分隔数据。
现在我想将此数据传输到 .sdf 文件,该文件将通过使用 dataGridView 的 windowsform 应用程序以表格格式显示。
我已经创建了一个带有表(和列)的 sdf。
我知道如何访问 .sdf 并通过 dataGridView 显示。
我的问题是我不知道如何将数据从 txt 传输到 sdf。
我不想手动执行此操作,因为 txt 文件包含大约 20,000 行。
资源:我已经回收了代码 http://dotnetperls.com/datagridview-tutorial
感谢任何可以提供帮助的人。 :3 铍
I'm using Visual c# express 2008.
I have a huge text file that has data similar to this: "text/text/text/text"
I'm using a delimiter to separate the data.
Now I want to transfer this data to an .sdf file that will be displayed in table format through the windowsformapplication using dataGridView.
I already created an sdf with a table (and columns).
I know how to access the .sdf and display through the dataGridView.
My problem is I have no idea how to transfer the data from the txt to the sdf.
I don't want to do it manually because the txt file contains around 20,000 worth of lines.
Resources: I've recycled code from
http://dotnetperls.com/datagridview-tutorial
Thanks to anyone who can help. :3 Ree
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据记忆(未测试)SqlBulkCopy 可与 SDF 配合使用,因此您需要的只是一个 IDataReader。如果您搜索“fast CsvReader”,您应该在 codeproject 上找到一个;这适用于任何分隔符,并且应该与 SqlBulkCopy 完美配合(我已经多次使用这种方式,但不适用于 sdf)。
http://msdn.microsoft.com/en-us /library/system.data.sqlclient.sqlbulkcopy.aspx
http://www .codeproject.com/KB/database/CsvReader.aspx
From memory (not tested) SqlBulkCopy works with SDF, so then all you need is an IDataReader. If you search for "fast CsvReader" you should find one on codeproject; this works with any delimiter and should work perfectly with SqlBulkCopy (I've used it this way multiple times, although not with sdf).
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx
http://www.codeproject.com/KB/database/CsvReader.aspx
另外,您可以尝试我的新 Csv2sqlce 实用程序:http://csv2sqlce.codeplex.com
Also, you could try my new Csv2sqlce utility: http://csv2sqlce.codeplex.com