Skip to main content

JDBC Connector Class Name

The connectors use different class names.

Version 1.x Version 2.x
com.simba.athena.amazonaws.athena.jdbc.AthenaDriver com.simba.athena.jdbc.Driver

If you are using the following line in your code to explicitly load the connector class in your source code:
Class.forName("com.simba.athena.amazonaws.athena.jdbc.AthenaDriver");,
then you will need to change it to:
Class.forName("com.simba.athena.jdbc.Driver");

Was this article helpful?

We're sorry to hear that.