I'm using SQLite for a simple attendance tracking application to be implemented in Java. I am using the driver found in http://www.zentus.com/sqlitejdbc and I want to know if i need the dll's still or if i only need the jar i retrieved from the site.
+1
A:
The jar you retrieved from the site should be sufficient. Toward the bottom of the page you cite, it says:
Run with:
java -cp .:sqlitejdbc-v056.jar Test
I just (re)tested that jar, on an Ubuntu system and on my Snow Leopard system. The same jar worked fine in both places.
Brian Clapper
2010-06-20 01:47:39
thanks. i was just worried cause i read somewhere that you had to include the dll in the folder.
anonymous
2010-06-20 04:30:42
The JAR includes the DLLs, at least for "common" environments. Use `jar tvf sqlitejdbc.jar` to see exactly which ones it has.
kdgregory
2010-06-20 23:27:28