Fist of all you can use oracle driver with jdk 1.5 or jdk 1.6
First of all try to change classpath:
1. remove c:\oracle\ora92\jdbc\lib\classes12.zip;
2. change classes12.jar ojdc14.jar
Second:
jdbc:oracle:oci8:@tcp1105008:1521:oradev01 - uses oci driver, oracle client should be installed on client. I think where is small bug here it should be:
jdbc:oracle:oci:@tcp1105008:1521:oradev01
I prefer to use thin version (we had huge problems with oci driver for oracle 9.2), try to change just connection
string:
jdbc:oracle:thin:@tcp1105008:1521:oradev01