Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: JDBC and Oracle
> Exception in thread "main" java.lang.NoClassDefFoundError: JdbcCheckup
the CLASSPATH not contains path to your class, if it is a runtime msg
eg : c:\xxx\com.yyy.JdbcCheckup.class
add to classpath "c:\xxx;"
eg : com.yyy.JdbcCheckup.class >> c:\xxx\prg.zip add to classpath "c:\xxx\prg.zip;"
> What might cause this and how I can proceed with the Java?????
to run the program:
java -classpath c:\xxx\prg.zip; com.yyy.JdbcCheckup
I hope I doesn't contains so much errors Received on Fri Dec 15 2000 - 04:38:17 CST