Hey
I managed to compile the sqlitejdbc from here. The instructions in the MakeFile there says:
Makefile for the native SQLite JDBC Driver
No auto-goop. Just try typing 'make'. You should get two interesting files: build/TARGET_OS/LIBNAME build/sqlitejdbc-vXXX-native.jar
To combine these, type: cd build mv LIBNAME linux-x86.lib (or win-x86.lib, freebsd-ppc.lib, mac.lib, etc) java uf sqlitejdbc-vXXX-native.jar linux-x86.lib
The first is the native library, the second is the java support files. Generating the more complete sqlitejdbc-vXXX.jar requires building the NestedVM source, which requires running a Linux machine, and looking at the other make files.
After building the source i had a jar and a dll file. But then i couldn't understand the "java uf" part. I thought he meant jar and did a "jar uf" with the two files which resulted in an updated jar file. Now when i try using this jar i get a "Sqlite Library not found exception".
I wanted help in understanding the the last part of the instruction which says
Generating the more complete sqlitejdbc-vXXX.jar requires building the NestedVM source, which requires running a Linux machine, and looking at the other make files.
Any help appreciated