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"); } } }
6 25321What is the difference between Test Management tools and Defect Management tools? What are the most widely used Test Management tools?
2 22405wt is diference between int and int pointer as same as float and float pointer and char and char pointer
8 13793Post New CTS Interview Questions
Differentiate between the PROC SUMMARY and PROC MEANS?
What is php static function?
How do I make it so that code runs when the security system is stopping it?
Is RTCC panel needs any control supply.
What is a field status group? : fi- general ledger accounting
how to calculate maximum current
Explain what is the function of ‘Unsupervised Learning’?
How adaptive do you consider yourself to the environment?
Why are ics more reliable than discrete circuits?
Explain the dashboard component of Custom S-Control?
What is jfs2?
What is activex plugin?
What is helper in yii?
What are data types in ms access?
How to connect with firebird database in delphi using tsqlconnection?