Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Eclipse. I'm trying to connect to SQLLite database. I'm following examaple from http://www.zentus.com/sqlitejdbc/usage.html. I downloaded the jar file, imported into the project but once I run the code I get following exception

Exception in thread "main" java.lang.ClassNotFoundException: org.sqlite.JDBC
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at com.amazon.IP2Zip.Test.main(Test.java:7)

Seems like it is not able to find the class, even though I imported the jar file into the project.

Any help would be greatly appreciated :)

share|improve this question
How did you import it into the project? "Add to build path..."? – aioobe Jul 29 '11 at 8:05
What does eclipse say when you add a import org.sqlite.JDBC; to a sourcefile? – rsp Jul 29 '11 at 8:10

2 Answers

According to the java.lang.ClassNotFoundException ,classes cannot be found in the CLASSPATH. Try to put that path into build path by doing something like this :-

Project->BuildPath->libraries ->Add External jars.

share|improve this answer

right click on the project and select properties from that select build path and there in the libraries section select add external Jar's and browse to the location where the jar file is stored.

Hope this will do the trick

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.