java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr
iver? I get this error at run time.I used oracle10G. I set
CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0
\server\jdbc\lib\ojdbc14.jar;
I write JDBC PROGRAM like
import java.sql.*;

class Example
{
public static void main(String args[])
{
try
{
Class.forName
("oracle.jdbc.driver.OracleDriver");
System.out.println("Driver Loaded");
Connection con=DriverManager.getConnection
("jdbc:oracle:thin:@localhost:1521:xe","system","salmas");
System.out.println("Driver Connected");
Statement st=con.createStatement();
ResultSet rs=st.executeQuery("select * from
emp");
while(rs.next())
{
System.out.println(rs.getInt(1));
System.out.println(rs.getString(2));
System.out.println(rs.getString(3));
}
st.close();
con.close();
}

catch(Exception e)
{
System.out.println(e);
}

finally
{
System.out.println("it's
finally block executed");
}

}
}

Answer Posted / vishnu

iam usin type 4 driver .using oracle 10g.when i am trying to run the code error came like this Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.
OracleDriver.

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is jdbc object oriented?

498


Which package is used for jdbc application?

514


How can you know about drivers and database information ?

546


What is the difference between executing, executequery, executeupdate in jdbc?

560


What are restrictions on triggers?

1672






What is database connection pooling? Advantages of using a connection pool?

535


Explain the locking system in jdbc?

541


What is metadata in jdbc?

482


What is difference between statement and preparedstatement in jdbc?

467


Write a program JDBCcode forfetching student database with SQL.

578


What is jdbc odbc driver?

571


What is the use of JDBC DriverManager class?

554


What is jdbc architecture in java?

470


What is jdbc and its types?

494


Is jdbc faster than hibernate?

570