user1758817
user1758817

Reputation: 1

java.lang.ClassNotFoundException sun.jdbc.odbc.JdbcOdbcDriver in sql sever 2008 with java 8

i have java 8 and sql server 2008 i know that my connection code is 100% right because same code is working on another system that have install previous version of java 8 but still i got error java.lang.ClassNotFoundException sun.jdbc.odbc.JdbcOdbcDriver after running code please help me!!

Upvotes: 0

Views: 101

Answers (1)

Samrat Dutta
Samrat Dutta

Reputation: 1737

In Java 8 you cannot use the JDBC-ODBC Bridge. Java8 does not support it. I dont know how you got it to work the other time. You have to use UCanAccess to do it.

Upvotes: 1

Related Questions