I’m trying to connect to a remote database using the following java code, but I get an error saying no suitable driver found.
DriverManager.getConnection("odbc:db2://url:port/dbname");
Class.forName("com.ibm.db2.jcc.DB2Driver");
What could I be doing wrong?
I found the solution…I didn’t add the JAR files for the driver.