Excel 到 SQL、C# 库
我有一个客户给我的 Excel 电子表格,它分为多个工作表。我需要逐行从每个工作表中提取某些列,并迭代每个工作表(所有相同的模板)以将数据转储到数据库表中。它还需要清除存在的任何重复项。
我希望使用 C# 语言构建一个简单的 asp.net 前端。
您会推荐哪些图书馆?我还没有找到任何有用的东西。
任何帮助将不胜感激! :-)
PS 到目前为止我发现的最好的是 OpenXML(微软库)
I have an excel spreadsheet that a client has given me which is broken down into multiple worksheets. I need to extract certain columns from each worksheet on a row-by-row basis and to iterate through each worksheet (all identical templates) to dump the data in a database table. It also needs to weed out any duplicates present.
I wish to build a simple asp.net front-end, using C# for the language.
What libraries would you recommend? I have yet to find any that are of any use.
Any help will be supremely appreciated!!! :-)
P.S. The best I have found so far is OpenXML (Microsoft libraries)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以在没有任何库的情况下完成,SOL Server 支持使用数据导入向导将 Excel 文件直接导入其中。我建议将整个工作簿转入数据库并从那里使用它。
This can be done without any libraries at all, SOL Server supports importing excel files directly in to it using the data import wizard. I would recommend turning the entire workbook in to a database and work with it from there.