I'm attracted to the neatness that a single file database provides. What driver/connector library is out there to connect and use SQLite with Java.

I've discovered a wrapper library, http://www.ch-werner.de/javasqlite, but are there other more prominent projects available?

link|improve this question

feedback

8 Answers

up vote 85 down vote accepted

The wiki lists some more wrappers:

link|improve this answer
1  
I recommend the mysaifu version. It works on Sun's JVM for windows (not just mysaifu) and is the only stable wrapper I know of that implements commit hooks. – finnw Sep 15 '09 at 9:23
25  
I recommend the one from zentus.com/sqlitejdbc -- it is extremely easy to get started with as it comes packaged as a single JAR including native SQLite binaries for most platforms. – kdt Dec 23 '09 at 19:13
1  
My addition to this list is sqlite4java - code.google.com/p/sqlite4java - it's a wrapper (no JDBC); precompiled for Windows, Mac, Linux. It's simple to use and it enforces some contracts to help the developer avoid misusing SQLite. – sereda Jun 21 '10 at 13:08
3  
sqlite4java looks interesting, but they also have a great comparison of the various wrappers out there: code.google.com/p/sqlite4java/wiki/ComparisonToOtherWrappers – Scott Bennett-McLeish Oct 17 '10 at 23:29
1  
@Martijn xerial.org/trac/Xerial/wiki/SQLiteJDBC is a fork of zentus's driver and supports BLOB (there's a short tut on their site). – JHarris Aug 11 '11 at 14:56
show 4 more comments
feedback

Hey I found your questions while search for information with SQLite and Java. Just thought I add my answer which I also posted on my blog.

I have been coding in Java for a while know. I have also known about SQLite but never used it… Well I have have used it through other applications but never in an app that I coded. So I needed it for a project this week and its so simple use!

First I found the website of David Crawshaw who has a Java JDBC driver for SQLite. Just add his JAR file to your classpath and import java.sql.*

His test app will create a database file, send some SQL commands to create a table, store some data in the table, and read it back and display on console. It will create the test.db file in the root directory of the project. You can run this example with java -cp .:sqlitejdbc-v056.jar Test.

package com.rungeek.sqlite;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

public class Test {
    public static void main(String[] args) throws Exception {
        Class.forName("org.sqlite.JDBC");
        Connection conn = DriverManager.getConnection("jdbc:sqlite:test.db");
        Statement stat = conn.createStatement();
        stat.executeUpdate("drop table if exists people;");
        stat.executeUpdate("create table people (name, occupation);");
        PreparedStatement prep = conn.prepareStatement(
            "insert into people values (?, ?);");

        prep.setString(1, "Gandhi");
        prep.setString(2, "politics");
        prep.addBatch();
        prep.setString(1, "Turing");
        prep.setString(2, "computers");
        prep.addBatch();
        prep.setString(1, "Wittgenstein");
        prep.setString(2, "smartypants");
        prep.addBatch();

        conn.setAutoCommit(false);
        prep.executeBatch();
        conn.setAutoCommit(true);

        ResultSet rs = stat.executeQuery("select * from people;");
        while (rs.next()) {
            System.out.println("name = " + rs.getString("name"));
            System.out.println("job = " + rs.getString("occupation"));
        }
        rs.close();
        conn.close();
    }
  }
link|improve this answer
I'm continually amazed at how older posts can be incredibly useful - like this one. +1 – Wayne Werner Nov 22 '10 at 16:31
This is why I think Joel was talking bull (Google tech talk:youtube.com/watch?v=NWHfY_lvKIQ) when saying that stackoverflow.com's design is better because of all the "old" posts hanging around on the internet. It's just a rehash. – Nikolaos Jan 14 '11 at 20:23
5  
Also notice that Crawshaw project seems on hiatus, but was forked and updated here: xerial.org/trac/Xerial/wiki/SQLiteJDBC – lapo Mar 9 '11 at 11:07
4  
nothing's like a good and simple example. – Yasser Souri Apr 11 '11 at 12:26
feedback

I understand you asked specifically about SQLite, but maybe HSQL database would be a better fit with Java. It is written in Java itself, runs in the JVM, supports in-memory tables etc. and all that features make it quite usable for prototyping and unit-testing.

link|improve this answer
Yes HSQL is a very good choice and I've used it quite extensively in a couple of client apps for good effect. In this instance however, I did indeed want to use SQLite. – Scott Bennett-McLeish Mar 1 '09 at 2:00
feedback

There is a new project SQLJet that is a pure Java implementation of SQLite. It doesn't support all of the SQLite features yet, but may be a very good option for some of the Java projects that work with SQLite databases.

link|improve this answer
3  
It looks promising but it appears that it doesn't offer an SQL query ability yet, kind of a deal breaker for me. – Scott Bennett-McLeish Aug 13 '09 at 5:48
feedback

Bernie's post is very helpful. Couldn't vote up (don't have enough reputation :( ). But it Helped a lot. Just to reiterate!

http://www.zentus.com/sqlitejdbc/

Here you can find the latest SQLite JDBC jar. Just add the jar into you classpath and you are done! :) You can run Bernie's sample code to test if everything is fine.

http://souptonuts.sourceforge.net/readme_sqlite_tutorial.html http://www.sqlite.org/lang.html

Here you can find some help on SQL syntax for SQLite. Cheers to SQLite :)

link|improve this answer
Mind you, no BLOB support! – Martijn Jun 29 '11 at 14:03
feedback

The example code leads to a memory leak in Tomcat (after undeploying the webapp, the classloader still remains in memory) which will cause an outofmemory eventually. The way to solve it is to use the sqlite-jdbc-3.7.8.jar; it's a snapshot, so it doesn't appear for maven yet.

link|improve this answer
feedback

Typo: java -cp .:sqlitejdbc-v056.jar Test

should be: java -cp .:sqlitejdbc-v056.jar; Test

notice the semicolon after ".jar" i hope that helps people, could cause a lot of hassle

link|improve this answer
feedback

When you compile and run the code, you should set the classpath options value. Just like the following:

javac -classpath .;sqlitejdbc-v056.jar Text.java

java -classpath .;sqlitejdbc-v056.jar Text

Please pay attention to "." and the sparate ";"(win, the linux is ":")

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.