I am trying to connect to an Oracle database via JDBC. Using the following code:
Connection c = null;
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
c = DriverManager.getConnection(connURL, userID, password);
} catch (SQLException se) {
System.out.println(se.getMessage());
} catch (Exception e) {
System.out.println(e.getMessage());
}
For some reason no exception is thrown but c remains null - what does this mean?
Update:
Turns out we were getting an exception - Class not found: "oracle.jdbc.driver.OracleDriver" - we had the odbc classes outside the classpath.
getMessage()returns empty string? – axtavt Apr 25 '11 at 11:11