将.txt数据转为.sdf 使用Visual C#显示

发布于 2024-10-01 07:31:21 字数 508 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫雨熙 2024-10-08 07:31:22

根据记忆(未测试)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

凯凯我们等你回来 2024-10-08 07:31:22

另外,您可以尝试我的新 Csv2sqlce 实用程序:http://csv2sqlce.codeplex.com

Also, you could try my new Csv2sqlce utility: http://csv2sqlce.codeplex.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文