从 .NET 中的 Excel 电子表格更新数据库

发布于 2024-08-18 22:29:13 字数 75 浏览 4 评论 0原文

是否可以通过读取 Excel 电子表格并从某些列中提取某些值来在 VB.NET 应用程序中更新 Teradata 表?如果是这样怎么办?

Can Teradata tables be updated in an VB.NET application by reading an Excel spreadsheet and pulling certain values from certain columns? If so how?

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

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

发布评论

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

评论(1

﹎☆浅夏丿初晴 2024-08-25 22:29:13

是的。

此链接显示了如何通过 ADO.NET 和两个 OleDb 连接从服务器数据库读取数据并更新 Excel。

修改该代码以执行相反的操作应该很容易。 ;您只需交换该代码中显示的连接字符串,以便源是 Excel,目标是您的 Teradata 数据库。

查询中有一些特定于 Excel 的内容,但您已经明白了。

注意:这不是 Excel 自动化。它使用 ADO.NET 读取/更新 Excel 工作表。您不需要在计算机上安装 Excel 即可执行这些查询。

Yes.

This link shows how to read from a server database and update Excel, via ADO.NET and two OleDb connections.

It should be easy to modify that code to do the reverse. ; you'd just need to swap the connection strings shown in that code, so that the source is Excel, and the destination is your Teradata db.

There are some Excel-specific things in the queries, but you get the idea.

NB: This is not Excel Automation. It uses ADO.NET to read/update an Excel sheet. You don't need Excel to be installed on the machine in order to do these queries.

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