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 / vijay

Hey,
You are written In valid Driver name
use following script
Then you can't get that problam.

Class.forName("oracle.jdbc.Driver.OracleDriver");

in Driver "D" should capital

Is This Answer Correct ?    1 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the JDBC Architecture?

562


How do you determine the sensitivity of the ResultSet object?

542


What are the basic exceptions in jdbc?

518


How do I find whether a parameter exists in the request object?

491


What does jdbc setmaxrows method do?

514






What is jdbc and explain jdbc architecture?

512


What is jdbc driver manager?

491


What is meant by jdbc?

517


What is the use of getGeneratedKeys() method in Statement?

527


Is jdbc object oriented?

498


How does a custom RowSetReader get called from a CachedRowSet?

567


What are the common JDBC problems that you got and how do you solved them?

1953


How to rollback a JDBC transaction?

561


How many packages are available in jdbc api?

535


Explain the locking system in jdbc?

535