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. :)