Java使用Excel驱动程序进行ODBC连接

huangapple go评论81阅读模式
英文:

Java ODBC connection with Excel driver

问题

我已经设置了一个带有Excel驱动程序的ODBC连接。如何在Java项目中设置这个连接,以便能够执行SQL查询?

英文:

I have an ODBC connection set up with an Excel driver. How to set up this connection in a Java project in order to be able to perform SQL queries?

答案1

得分: 1

Java不能直接与ODBC一起使用。

您有两种可能性:

  1. 使用类似这里1和这里2所述的ODBC-JDBC桥接。
  2. 使用专用于Excel操作的库,比如Apache poi
英文:

Java doesn't work directly with ODBC.

You have two possibilities :

  1. Use a odbc-jdbc bridge like said here and here.
  2. Use a library dedicated to Excel manipulation like Apache poi.

huangapple
  • 本文由 发表于 2020年8月19日 19:48:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/63486332.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定