I have successfully installed an ODBC driver. I am trying to connect to an Oracle 10g database using Netbeans 7.0.
During connectivity it says "Driver class missing".
How can this be fixed?
Error:
> java.lang.classNotFoundException:oracle.jdbc.odbc.JdbcOdbcDriver
try
{
// Load the JDBC driver
String driverName = "oracle.jdbc.odbc.JdbcOdbcDriver";
Class.forName(driverName);
connection = DriverManager.getConnection("jdbc:odbc:placement");
JOptionPane.showMessageDialog(null,"Connection Established");
///unrelated code snipped
}
You may have 'installed' the JDBC driver, but you haven't put the jar file containing it into your classpath.
以上就是classNotFoundException when trying to use Oracle JdbcOdbcDriver的详细内容,更多请关注web前端其它相关文章!