steps to connect with Oracle Databse using TYPE-2 Jdbc driver.
Answer Posted / nigel
[NOTE: This description is for oracle 10g]
Step 1: Set the classpath to the oracle driver in your
oracle_home directory
eg:CLASSPATH=C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jar;
Step 2: USE -- Class.forName("oracle.jdbc.OracleDriver");
Step 3: USE jdbc url =
("jdbc:oracle:oci:USERNAME/PASSWORD@localhost:1521:XE");
In My Case it was : USERNAME=hr PASSWORD=hr
The rest of the code is similar to jdbc:odbc connection.
just compile and run the code.....:D
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Why vector class is used?
Explain wait(), notify() and notifyall() methods of object class ?
How dead lock situation occurs in java and how you can identify it?
What are wrapped classes in java programming?
What is hotjava?
Can a class be private in java?
What is the r character?
What is enhanced loop in java?
What are the four integer types supported by java?
Are maps ordered java?
How do you do absolute value in java?
What are heap memory and stack memory and what are memory tables.
What is reflexive association?
Should a main method be compulsorily declared in all java classes?
Which types of exceptions are caught at compile time?