JDBC OSX 10.4 classpath and xcode
Here is my classpath
echo $CLASSPATH
/Users/m3the01/oracle/jdbc/lib/classes111.zip:/Users/m3the01/oracle/jdbc/lib/nls_charset11.zip
Im getting the oracle.jdbc.driver.oracledriver error
Any tips on adding the drivers to xcode would also be appreciated.
I attempt to build by
javac -classpath $CLASSPATH *.java
java mainapp
Than i get the noted error from the call
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
}catch(ClassNotFoundException e){
JOptionPane.showMessageDialog(null, "DatabaseConnectionManager:OracleDriverCheck:\nError: " + e.getMessage(),
"Error", JOptionPane.ERROR_MESSAGE);
}

