sqlitejdbc « sqlite « Java Database Q&A





1. Using sqlitejdbc with multiple processes    stackoverflow.com

I'm trying to run several instances of a program accessing a sqlite database in java (always the same file) and actually I don't know whether it's possible or not that several ...

2. Are the pure Java SQLiteJDBC drivers really pure?    stackoverflow.com

I am making the decision for an embededded database in an upcoming Java servlet application. I am down to two final contenders: SQLite with SQLiteJDBC "pure Java" drivers vs ...

3. jdbc:sqlite not retreving data    stackoverflow.com

I am using a jdbc:sqlite to access a sqlite db and get some records with a simple select statement. There are rows in the database but the java function returns nothing. ...

4. SQLite implementations in Java and C#    stackoverflow.com

I've been using SQLite in my Java and C# applications, making use of the System.Data.SQLite library for C# and the Zentus SQLiteJDBC Driver for Java. I've noticed that ...

5. Does SQLiteJDBC can work without SQLite installed, and can it initialize the database tables?    stackoverflow.com

I've tried finding this out on my own but to no avail. I'm writing a Java app that will use an embedded SQLite database through Zentu's SQLiteJDBC. I am making the ...

6. Do I need to install SQLite so that SQLiteJDBC works?    stackoverflow.com

I guess I'm just not "getting it". If I don't have SQLite already installed on my computer, and I want to write a Java app that uses an embedded database, and ...

7. SQLite/JDBC inner join    stackoverflow.com

I have found what appears to be a bug in the SQLite JDBC driver, but I thought I'd see if someone could spot any boneheaded errors on my part. I ...