Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SQLite wrapper

843854Nov 26 2004 — edited Oct 9 2006
hi all,

I'm trying to use this wrapper (http://www.ch-werner.de/javasqlite/javasqlite-20041029-win32.zip) to use SQLite inside my Java applications.

this wrapper has two files: a DLL and a JAR.
I put the first one in this folder: C:\Programs\Java\jre1.5.0\bin and I included the second one inside the Elipse project that I'm creating.

well, I wrote this code:
public static void main(String args[]) {
 try {
  Class.forName("SQLite.JDBCDriver");
 } catch (ClassNotFoundException ex) {
    System.out.println(ex.toString()); 
   }
}
but I get always this exception:

java.lang.ClassNotFoundException: SQLite.JDBC2y.JDBCConnection

how can I fix this problem?
thanks a lot for your answers. :)
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 6 2006
Added on Nov 26 2004
7 comments
185 views