cesar
cesar

Reputation: 9074

What do I need to use SQLite in Java?

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.

Upvotes: 2

Views: 391

Answers (1)

Brian Clapper
Brian Clapper

Reputation: 26230

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.

Upvotes: 1

Related Questions