Connecting Domino to Oracle with JDBC
843854Jul 10 2002 — edited Jul 10 2002Hi all,
I'm building a Lotus Notes/Domino database which will connect to an Oracle db using JDBC. I included the classes111.zip into the program and everything works nicely.
But it's slow! When the program runs, it loads all 1.7Mb of the classes111.zip file before executing.
So what I did was extract all the class files and then include only the ones I though I needed (i.e. oracle\jdbc\driver\OracleDriver.class). This works fine under the Notes client, but fails when run under a browser. I added another class (OracleLog) so that it would make the connection, but now I get "java.lang.NullPointerException" when I try to make a new Statement - obviously because the value of the connection is Null.
So what I want to know is, what are all the individual class files I need to extract from classes111.zip to be able to connect to an Oracle database using the Oracle JDBC Thin driver? Or will I actually need to include the whole classes111.zip?
T.I.A.