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
How do I open the startup menu?
Give the advantages of cognos?
What are the activities that you perform while moving VOBs between two different operating systems?
How is ‘build’ different from ‘release’?
What is the difference between functional testing and integration testing?
What are the different UDF’s in Pig?
How do you implement thread synchronization in c#?
What is new in ServletRequest interface ? (Servlet 2.4)
Is hive an impala requirement?
Can i Connect plsql to django ?
how to insert a bulleted list?
What is meant by time harmonics and space harmonics?
Name a few IoT protocols?
Explain about virus sequencing ,viral extraction ?
discuss the conditional formatting and advanced filtering features in MS-Excel with suitable example