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 :)
import org.sqlite.JDBC;to a sourcefile? – rsp Jul 29 '11 at 8:10