Change . I confused sqlite4java with sqliteJDBC package. Therefore, the code below will not help. However, I keep it for reference.
After you got the connection, just call setAutoCommit(false)
java.sql.Connection con = DriverManager.getConnection("jdbc:sqlite:/your/db/file", "user", "password");
con.setAutoCommit(false);