surendar


{ City } bangalore
< Country > india
* Profession * java developer
User No # 94132
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 1
Questions / { surendar }
Questions Answers Category Views Company eMail




Answers / { surendar }

Question { 3649 }

this is the exception raised when i am working with oracle
11g java.lang.ClassNotFoundException: oracle.jdbc.Driver.Ora
cleDriver.. but i set the class path for both oracle and java..


Answer

ClassNotFoundException is the checked exception so we must handle that one or we can declare as throws keyword.
ex:
class EmployeeDao{
public static void main(String args[0]throws SQLException, ClassNotFoundException{
------------
-------------
}

}

Is This Answer Correct ?    2 Yes 1 No