如何使用subsonic读取csv文件

发布于 2024-09-12 03:25:46 字数 528 浏览 6 评论 0原文

我应该将 csv 文件转换成一份不错的报告给老板。

起初,我根本没想过编程。作为 Excel 和 Word 的高级用户,我认为我可以用这个立即完成工作,甚至可能根本没有任何愚蠢的 MS 宏......

事实证明我错了。

所以我必须编写一些程序来完成工作。它必须是在 C# 中,

因为我是 not-invented-here 和其他数据库到对象方法的忠实粉丝,我曾经使用过 rake/ruby/ror/active_record,而在 C# 上 returnig 时我发现亚音速课程非常方便快速完成简单的工作,并且可以轻松地更改以后的事情。特别是它简单的存储库设计非常好。那是大约半年前的事了。

现在我有一个简单的问题,我在 subsonic 网站中找不到与 CSV 相关的任何内容,但 subsonic 网站说要询问 stackoverflow,所以我们在这里:

我可以使用 subsonic 读取 CSV 文件中的数据吗?< /strong> (与常规 sqlite 或 mysql 数据库相反)

i'm supposed to convert a csv file into a nice report for bosses.

At first, I didn't even think of programming at all. As a power user of both excel and word, i thought i could get the job done in no time with this, maybe even without any stupid ms macro at all...

it turns out i was wrong.

so i'm gonna have to program something to get the job done. and it's gotta be in C#

since i'm a huge fan of the not-invented-here and other database-to-object approach, i once used to work with rake/ruby/ror/active_record, and while returnig on C# i found subsonic classes very convenient to get a simple job done quickly and easily change things later on. Espacially its simplerepository design is very good. That was about half a year ago.

Now i have this simple question, I couldn't find anything related to CSV in subsonic site, but subsonic website says to ask stackoverflow instead, so here we are :

can i use subsonic to read data in a CSV file? (as opposed to a regular sqlite or mysql database)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

醉城メ夜风 2024-09-19 03:25:46

Subsonic 是一个 ORM,而不是读取 CSV 文件的库。如果我是你,我会使用这个库来读取内存中的 csv 文件: A Fast CSV Reader

读取文件后,您可以稍后使用 Subsonic 将其保存到数据库并执行查询(如果需要)。

Subsonic is an ORM, not a library to read CSV files. If I were you I would use this library to read the csv file in memory: A Fast CSV Reader

Once you read the file you can later use Subsonic to save it to database and perform queries (if you need to).

度的依靠╰つ 2024-09-19 03:25:46

我使用 http://www.filehelpers.com/。它是一个易于使用的 .NET 库。
您可以为分隔或固定长度的 dat 文件定义导入/导出格式(如 xml 或属性类)。

Im using http://www.filehelpers.com/. Its an easy to use .NET Lib.
You can define im/export formats (as xml or attributes class) for delimited or fixed length dat files.

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