JDBC Driver are not Application "server" specific. It is, however, database server specific. Click
here and get yourself an Oracle JDBC Driver (
classes12.jar).
Add classes12.jar into your CLASSPATH and try the following code where xxx.xxx.xxx.xxx is the IP of your Oracle Server
String url = "jdbc

racle:thin:@xxx.xxx.xxx.xxx:1521

racleSID";
String userId = "";
String password = "";
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con=DriverManager.getConnection(url, userId, password);
Statement stmt = con.createStatement();
//==================
} catch (Exception e) {
}