如何使用 C#.Net 将内容从 Excel 更新到 MySql 数据库

How to Update content from Excel to MySql Database using C#.Net

我需要使用 C# 和 .Net Framework

将给定的 Excel 更新为 MySql 数据库

谁能帮我提供参考链接,让我学习和实现。

这不是关于堆栈溢出的问题,而是为了帮助您入门(以及将来 return 到 SO 并使用代码示例询问具体问题:))

要读取和写入 Excel 个文件,使用 NPOI,Apache POI 的 .net 端口是最简单的。

然后,google一点,你可以找到很多examples like this one or maybe this one

要访问 MySQl,您在 .NET Framework 中拥有所需的一切,或者您可以使用 MySQL Connector. Of course, there are a lot of samples, especially on stack owerflow