SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
161
votes
16answers
59k views
SQLite vs MySQL
SQLite is a single-file based database and MySQL is a normal database. That's great, but I'm not sure which is faster where or better for what...what are the pros and cons of each option?
111
votes
9answers
33k views
Is there a .NET/C# wrapper for SQLite?
I'd sort of like to use SQLite from within C#.Net, but I can't seem to find an appropriate library. Is there one? An official one? Are there other ways to use SQLite than with a wrapper?
109
votes
5answers
28k views
What 'additional configuration' is necessary to reference a .NET 2.0 mixed mode assembly in a .NET 4.0 project?
I have a project in which I'd like to use some of the .NET 4.0 features but a core requirement is that I can use the System.Data.SQLite framework which is compiled against 2.X. I see mention of this ...
93
votes
4answers
12k views
How do I improve the performance of SQLite?
Optimizing SQLite is tricky. Bulk-insert performance of a C application can vary from 85 inserts-per-second to over 96 000 inserts-per-second!
Background: We are using SQLite as part of a desktop ...
92
votes
8answers
77k views
Java and SQLite
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, ...
85
votes
15answers
20k views
Any Good ORM tools for Android development?
Anyone working on the Android ('gPhone') have or know of a place where I can find a good ORM tool for it? The code is written in Java, and the DB is SQLite. What I would like to find is a tool that ...
76
votes
6answers
26k views
Core Data vs SQLite 3
I am already quite familiar with relational databases and have used SQLite (and other databases) in the past. However, Core Data has a certain allure, so I am considering spending some time to learn ...
75
votes
12answers
12k views
How Scalable is SQLite?
I recently read this Question about SQLite vs MySQL and the answer pointed out that SQLite doesn't scale well and the official website sort-of confirms this, however.
How scalable is SQLite and what ...
66
votes
14answers
33k views
What are good open source GUI SQLite database managers?
Is there any good open source SQLite database manager around?
I am using sqlitebrowser now but I have to say the interface is not really friendly so I am looking for something better.
61
votes
11answers
71k views
Mac SQLite editor
I am aware of CocoaMySQL but I have not seen a Mac GUI for SQLite, is there one?
My Google search didn't turn up any Mac related GUI's which is why I'm asking here rather than Google.
56
votes
6answers
20k views
How do I check in SQLite whether a table exists?
How do I, reliably, check in SQLite, whether a particular user table exists?
I am not asking for unreliable ways like checking if a "select *" on the table returned an error or not ( is this even a ...
50
votes
20answers
12k views
Is there a good IDE for SQLite?
Is there a tool out there that can interact with a SQLite database in a similar way that TOAD works with Oracle or Management Studio works with SQL Server?
I'm looking for something that visually ...
49
votes
10answers
34k views
Could not load file or assembly 'System.Data.SQLite'
I've installed ELMAH 1.1 .Net 3.5 x64 in my ASP.NET project and now I'm getting this error (whenever I try to see any page):
Could not load file or assembly
'System.Data.SQLite, ...
49
votes
9answers
22k views
SQLite - UPSERT *not* INSERT or REPLACE
http://en.wikipedia.org/wiki/Upsert
Insert Update stored proc on SQL Server
Is there some clever way to do this in SQLite that I have not thought of?
Basically I want to update three out of four ...
48
votes
11answers
45k views
How do I list the tables in a SQLite database file
What SQL can be used to list the tables, and the rows within those tables, in a SQLite database file once i've ATTACHed it on the sqlite3 command line tool?
46
votes
4answers
19k views
Sqlite primary key on multiple columns
What is the syntax for specifying a primary key on more than 1 column in SQLITE ?
43
votes
14answers
26k views
Quick easy way to migrate SQLite3 to MySQL?
Anyone know a quick easy way to migrate a SQLite3 database to MySQL?
40
votes
9answers
16k views
What are the performance characteristics of sqlite with very large database files?
I know that sqlite doesn't perform well with extremely large database files even when they are supported (there used to be a comment on the sqlite website stating that if you need file sizes above 1GB ...
40
votes
22answers
34k views
How do I unlock a SQLite database?
sqlite> DELETE FROM mails WHERE (`id` = 71);
SQL error: database is locked
How do I unlock the database so this will work?
38
votes
13answers
22k views
Is it possible to insert multiple rows at a time in an SQLite database?
In MySQL you can insert multiple rows like this:
INSERT INTO 'tablename' ('column1', 'column2') VALUES
('data1', 'data2'),
('data1', 'data2'),
('data1', 'data2'),
('data1', 'data2');
...
37
votes
5answers
10k views
Is there a Sqlite equivalent to MySQL's DESCRIBE [table]?
I'm just getting started learning Sqlite. It would be nice to be able to see the details for a table, like MySQL's DESCRIBE [table]. PRAGMA table_info [table] isn't good enough, as it only has basic ...
35
votes
18answers
19k views
Light weight alternative to Hibernate?
I have a single user java program that I would like to have store data in a light weight database such as Derby or Sqlite. I would like to use a data abstraction layer in my program. Hibernate appears ...
31
votes
5answers
13k views
How do I rename a column in a SQLite database table?
I would need to rename a few columns in some tables in a SQLite database.
I know that a similar question has been asked on stackoverflow previously, but it was for SQL in general, and the case of ...
29
votes
6answers
20k views
LINQ with SQLite (linqtosql)
I have a small project that require a storage (I choose SQLite) and I got good result with the ADO DLL for .Net for Sqlite.
After the Install, I noticed that it contain a SQLLinq.dll. Before ...
28
votes
2answers
19k views
How to do IF NOT EXISTS in SQLite
I am trying to port this line from MS SQL Server to SQLite
IF NOT EXISTS(SELECT 1 FROM EVENTTYPE WHERE EventTypeName = 'ANI Received')
INSERT INTO EVENTTYPE (EventTypeName) VALUES ('ANI ...
26
votes
7answers
2k views
How do you escape strings for SQLite table/column names in Python?
The standard approach for using variable values in SQLite queries is the "question mark style", like this:
import sqlite3
with sqlite3.connect(":memory:") as connection:
...
25
votes
8answers
5k views
Is there any NoSql database as simple as SQLite?
Is there any NoSql database as simple as SQLite? I'm looking for a lightweight database to persist a small set of data for a simple desktop application. I still can use SQLite but prefer a more OO ...
25
votes
5answers
47k views
How to insert a SQLite record with a datetime set to 'now' in Android application?
Say, we have a table created as:
create table notes (_id integer primary key autoincrement, created_date date)
To insert a record, I'd use
ContentValues initialValues = new ContentValues();
...
22
votes
7answers
2k views
Anatomy of a Distributed System in PHP
I've a problem which is giving me some hard time trying to figure it out the ideal solution and, to better explain it, I'm going to expose my scenario here.
I've a server that will receive orders
...
22
votes
12answers
20k views
Why can't I install the sqlite gem? [closed]
I'm try to install the sqlite gem on a Fedora 9 Linux box with ruby 1.8.6, Rails 2.2.2, gem 1.3, and sqlite-3.5.9. Here's the command I'm running and its results:
sudo gem install sqlite3-ruby
...
22
votes
3answers
15k views
sqlite database default time value 'now'
Is it possible in a sqlite database to craete a table that has a timestamp column that default to DATETIME('now') ?
Like this:
CREATE TABLE test (
id INTEGER PRIMARY KEY AUTOINCREMENT,
t ...
21
votes
3answers
5k views
How fast is Berkeley DB SQL compared to SQLite?
Oracle recently released a Berkeley DB back-end to SQLite. I happen to have a hundreds-of-megabytes SQLite database that could very well benefit from "improved performance, concurrency, scalability, ...
21
votes
3answers
8k views
Version of SQLite used in Android?
Reason: Im wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy data, drop the table, recreate table and ...
21
votes
10answers
14k views
Faster bulk inserts in sqlite3?
I have a file of about 30000 lines of data I want to load into a sqlite3 database. Is there a faster way that generating insert statements for each line of data?
The data is space delimited and maps ...
21
votes
10answers
7k views
What is a good OO C++ wrapper for sqlite
I'd like to find a good object oriented C++ (as opposed to C) wrapper for sqlite. What do people recommend? If you have several suggestions please put them in separate replies for voting purposes. ...
20
votes
3answers
2k views
SQL Server CE 4.0 performance comparison
SQL Server CE 4 (SQL Server Compact Edition 4.0) is not news already (If it is, you could read this article)
But it is very interesting to see SQL Server CE 4 performance comparison to other ...
19
votes
1answer
432 views
In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?
What I want to do is something along the lines of the following:
using System.Data.SQLite;
using System.IO;
//My SQLite connection
SQLiteConnection myCon;
public void ReadAndOpenDB(string filename)
...
19
votes
3answers
19k views
Where does Android emulator store SQLite database?
I'm working on an Android application that stores data in a SQLite database. My question is, where does this database file get stored on the filesystem when you're using an emulator?
I have seen ...
19
votes
8answers
12k views
Best Cocoa/Objective-C Wrapper Library for SQLite on iPhone [closed]
I'm developing for the iPhone and am looking for a good Cocoa/Objective-C library for working with SQLite. I don't want to use the standard procedural SQLite C API. I see options at sqlite.org under ...
19
votes
7answers
7k views
Problem using SQLite :memory: with NHibernate
I use NHibernate for my dataacess, and for awhile not I've been using SQLite for local integration tests. I've been using a file, but I thought I would out the :memory: option. When I fire up any of ...
18
votes
5answers
702 views
Anyone successfully used password on sqlite database in Monotouch?
I have a Monotouch app which uses a sqlite database. I want to encrypt the database so I am doing this:
_mainConnection = new SqliteConnection("Uri="+finalDB);
_mainConnection.Open();
...
18
votes
1answer
4k views
Android SQLite: nullColumnHack parameter in insert/replace methods
The Android SDK has some convenience methods for manipulating data with SQLite. However both the insert and replace methods use some nullColumnHack parameter which usage I don't understand.
The ...
18
votes
9answers
23k views
Tool to see android database, tables and data
I am new to Android and i would like to know if there's any tool to see databases (.db) tables and data into these tables.
Thanks in advance.
Best Regards.
Josema.
18
votes
5answers
8k views
What is the best way to connect and use a sqlite database from C#
I've done this before in C++ by including sqlite.h but is there a similarly easy way in C#?
17
votes
2answers
332 views
Why reimplement strlen as loop+subtraction?
Inspired by this question about the following code from SQLite3:
static int strlen30(const char *z){
const char *z2 = z;
while( *z2 ){ z2++; }
return 0x3fffffff & (int)(z2 - z);
}
...
17
votes
3answers
6k views
SQLite UPSERT - ON DUPLICATE KEY UPDATE
MySQL has something like this:
INSERT INTO visits (ip, hits)
VALUES ('127.0.0.1', 1)
ON DUPLICATE KEY UPDATE hits = hits + 1;
As far as I'm know this feature doesn't exist in SQLite, what I want to ...
17
votes
3answers
8k views
Can I download an SQLite db on /sdcard and access it from my Android app?
I already found out that there is no way to bundle files in an .apk and have them on /sdcard, the best option so far being to download the large files upon first run. I came accross a tutorial saying ...
17
votes
12answers
9k views
Python sqlite3 and concurrency
I have a Python program that uses the "threading" module. Once every second, my program starts a new thread that fetches some data from the web, and stores this data to my hard drive. I would like to ...
16
votes
3answers
9k views
SQLite data-types
When creating a table in SQLite3, I get confused when confronted with all the possible datatypes which imply similar contents, so could anyone tell me the difference between the following data-types?
...
16
votes
3answers
14k views
Core Data vs. SQLite for SQL experienced developers
We're beginning development of an in-house app in the iPhone Enterprise developer program. Since it's close to OS 3.0, we're reconsidering our original design of using SQLite and using Core Data ...