SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source code for SQLite is in the public domain.
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 ...
49
votes
13answers
14k views
sqlite3-ruby install error on Ubuntu
I have the following error during sqlite3-ruby install:
Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby:
ERROR: Failed to build gem native ...
49
votes
5answers
11k views
What is best practice with SQLite and Android?
What is considered "best practice" when executing queries on a SQLite db within an Android app?
Is it safe to run inserts, deletes and select queries from an AsyncTask's doInBackground ? Or should I ...
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 ...
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
5answers
15k views
How to set Sqlite3 to be case insensitive when string comparing?
I want to select records from sqlite3 database by string matching. But if I use '=' in the where clause, I found that sqlite3 is case sensitive. Can anyone tell me how to use string comparing ...
21
votes
1answer
2k views
What is the difference between libsqlite3.dylib and libsqlite3.0.dylib?
I'm getting started with SQLite databases in an app I'm working on. I've not run into issues yet but one of the early steps from this tutorial is linking the SQLite3 framework. The tutorial calls ...
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?
...
14
votes
6answers
2k views
Can SQLite handle 90 million records?
Or should I use a different hammer to fix this problem.
I've got a very simple use-case for storing data, effectively a sparse matrix, which I've attempted to store in a SQLite database. I've created ...
14
votes
2answers
15k views
How to get a list of column names on sqlite3 / iPhone?
I want to migrate my iPhone app to a new database version. Since I don't have some version saved, I need to check if certain column names exist.
This Stackoverflow entry suggests doing the select
...
12
votes
1answer
109 views
How can printing an object result in different output than both str() and repr()?
I was testing some code on the interpreter and I noticed some unexpected behavior for the sqlite3.Row class.
My understanding was that print obj will always get the same result as print str(obj), and ...
12
votes
2answers
12k views
Populate Android Database From CSV file?
Is it possible to take a csv file stored in the res/raw resource directory and use it to populate a table in the sqlite3 database?
My thought was that, if there was a way to do a bulk import for the ...
11
votes
2answers
2k views
sqlite3 concurrent access
Does SQLite safely handle concurrent access by multiple processes
reading/writing from the same db? Are there any platform exceptions to that?
11
votes
3answers
7k views
Problem with cascade delete using Entity Framework and System.Data.SQLite
I have a SQLite DB that is set up so when I delete a Person the delete is cascaded. This works fine when I manually delete a Person (all records that reference the PersonID are deleted). But when I ...
11
votes
1answer
2k views
SQL query logging for SQLite?
I need to log queries from a number of applications that use SQLite. Introducing logging to the applications would in this case not be a feasible solution in practice. So how can I enable query ...
10
votes
2answers
669 views
Is there a tool to profile sqlite queries?
I am using a SQLite database and would like to speed up my queries, perhaps with indexes or by restructuring them altogether.
Is there a tool to profile queries, that might help me decide where ...
10
votes
4answers
23k views
how to enable sqlite3 for php?
I am trying to install sqlite3 for php in ubuntu.
I install apt-get php5-sqlite3 and edited php.ini to include sqlite3 extension.
When I run phpinfo(); I get
SQLITE3
SQLite3 support enabled
...
9
votes
3answers
284 views
Serializing Sqlite3 in Python
To fully utilize concurrency, SQLite3 allows threads to access the same connection in three ways:
Single-thread. In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a ...
9
votes
2answers
790 views
SQLite VFS implementation guile lines with FOpen*
I am about to implement a custom VFS (virtual file system) for a Netburner embedded device (non windows) using FOpen, FRead, FWrite, FSeek, and FClose. I was surprised that i could not find a FOpen* ...
9
votes
6answers
848 views
Database on the fly with scripting languages
I have a set of .csv files that I want to process. It would be far easier to process it with SQL queries. I wonder if there is some way to load a .csv file and use SQL language to look into it with a ...
9
votes
5answers
9k views
Error: file is encrypted or is not a database
I used PHP to create a database with a table. I did it in the following way:
<?php
$db = new SQLiteDatabase("test.db");
unset($db);
$db = sqlite_open("test.db");
sqlite_query($db,"create table ...
8
votes
2answers
2k views
Sqlite issues with HTC Desire HD
Recently I have been getting a lot of complaints about the HTC Desire series and it failing while invoking sql statements. I have received reports from users with log snapshots that contain the ...
8
votes
3answers
3k views
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings
Using SQLite3 in Python, I am trying to store a compressed version of a snippet of UTF-8 HTML code.
Code looks like this:
...
c = connection.cursor()
c.execute('create table blah (cid integer ...
8
votes
3answers
3k views
force python to forego native sqlite3 and use the (installed) latest sqlite3 version
I am a newbie to python but, believe me I have done a day of browsing to find an answer for this issue, :(
The error message I am trying to get rid of is:
AttributeError: 'sqlite3.Connection'
...
7
votes
2answers
3k views
Error installing sqlite3 gem via bundler
I'm trying to get the sqlite3-ruby gem (version 1.3.4) installed on my account (CentOS on shared hosting, so I need to install this without root) and the version of sqlite installed is not new enough ...
7
votes
3answers
2k views
sqlite3 gem fails to install
I'm trying to install the "sqlite3-ruby" gem (or the "sqlite3" gem) on OS X 10.6. I'm using ruby-1.9.2 and I currently get the following:
$ sqlite3 --version
3.7.4
$ sudo gem install sqlite3
...
7
votes
2answers
1k views
SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL
I am getting the following error while trying to add a NOT NULL column to an existing table. Why is it happening ?. I tried rake db:reset thinking that the existing records are the problem, but even ...
7
votes
3answers
3k views
sqlite3 permission denied android
I'm trying to access the database of the application I'm developping directly on my Nexus, but I get a "permission denied" when I tried to execute the "sqlite3" command.
I also tried to start the adb ...
7
votes
4answers
923 views
Remote SQLite manager
Does someone know of a Sqlite manager that I can put on my site, so that I can access it over the web and create/edit SQlite databases. I guess something like phpMyAdmin for MySQL.
7
votes
1answer
2k views
Copying data from one sqlite db to another
I have 2 sqlite DBs with common data but with different purposes and I wanted to avoid reinserting data, so I was wondering if it was possible to copy a hole table from one DB to another. I didn't ...
7
votes
2answers
8k views
Sharing sqlite database between multiple Android Activities
Can two or more Android Activities open an sqlite3 database for write?
I have two Activities that need to insert data into the same sqlite database. When the second Activity calls ...
7
votes
4answers
4k views
How to change the collation of sqlite3 database to sort case insensitively?
I have a query for sqlite3 database which provides the sorted data. The data are sorted on the basis of a column which is a varchar column "Name". Now when I do the query
select * from tableNames ...
7
votes
3answers
3k views
Advantages and Disadvantages of SQLite.NET and SQL Server Compact
I have used SQLite.NET many times. It always worked fine but I have a friend that is really pestering me that I should use instead SQL Server Compact so I stayed fully in Microsoft environment.
Now, ...
6
votes
3answers
796 views
sqlite3_open_v2 error
after turnning on the server (rails s), getting error message when browsing to the remote link.
then:
/usr/bin/ruby: symbol lookup error: ...
6
votes
5answers
8k views
Multiple Table SQLite DB Adapter(s) in Android?
I was reading the Android SQLite NotePad tutorial that referenced creating a DB Adapter class to create and access a DB table. When dealing with a multi-table SQLite Database, is it best practice to ...
6
votes
2answers
2k views
Rails 3 - how do I avoid database altogether?
I'm trying to use rails 3 without any db backend, but it still insists on requiring 'sqlite3' gem when I try to access a page, and throws an error no such file to load -- sqlite3, even though no code ...
6
votes
1answer
544 views
Using SQLite with std::iostream
Does someone know a wrapper which would allow SQLite to load its data from an std::iostream?
To be more explicit:
std::fstream dataStream("database.sqlite");
...
sqlite3_open(...something using ...
6
votes
4answers
5k views
Android column '_id' does not exist?
I'm having trouble with something that works in the Notepad example.
Here's the code from the NotepadCodeLab/Notepadv1Solution:
String[] from = new String[] { NotesDbAdapter.KEY_TITLE };
int[] to = ...
6
votes
3answers
2k views
Inspecting android sql database from Eclipse
Is there a way to directly inspect an SQLite3 database in Android via Eclipse or do I have to do this via the shell?
6
votes
3answers
2k views
Escaping chars in Python and sqlite
I have a python script that reads raw movie text files into an sqlite database.
I use re.escape(title) to add escape chars into the strings to make them db safe before executing the inserts.
Why ...
6
votes
3answers
108 views
Optimising Database Calls
I have a database that is filled with information for films, which is (in turn) read in to the database from an XML file on a webserver.
What happens is the following:
Gather/Parse XML and store ...
6
votes
2answers
4k views
Importing a CSV file into a sqlite3 database table using Python
I have a CSV file and I want to bulk-import this file into my sqlite3 database using Python. the command is ".import .....". but it seems that it cannot work like this. Can anyone give me an example ...
6
votes
2answers
290 views
SQLite3's dynamic typing
SQLite3 uses dynamic typing rather than static typing, in contrast to other flavors of SQL. The SQLite website reads:
Most SQL database engines (every SQL database engine other than SQLite, as ...
6
votes
4answers
696 views
Is there any C SQLite API for quoting/escaping the name of a table?
It's impossible to sqlite3_bind_text a table name because sqlite3_prepare_v2 fails to prepare a statement such as:
SELECT * FROM ? ;
I presume the table name is needed to parse the statement, so ...
6
votes
2answers
3k views
Read datetime back from sqlite as a datetime in Python
I'm using the sqlite3 module in Python 2.6.4 to store a datetime in a SQLite database. Inserting it is very easy, because sqlite automatically converts the date to a string. The problem is, when ...
6
votes
2answers
6k views
PDO Insert Help
I'm having a bit of trouble inserting into a sqlite3 database with pdo. You'll have to excuse my ignorance with PDO, it seems so foreign coming from Python's database interface.
So here's my problem. ...
6
votes
3answers
3k views
iPhone create SQLite database at runtime?
Most sqlite examples I've found talk about creating a db file from the commandline first and then adding that to your app. For my project, I'd like to be able to create my database within the app ...
5
votes
2answers
131 views
Linking sqlite3.obj emits uunsatisfied forward declarations errors
I have compiled SQLIte3 database engine from sqlite3.c with BCC 55 using the following command:
bcc32.exe -jb -O2 -w- -K -c -6 -u- sqlite3.c
The proper sqlite3.obj file was generated. But once I ...
5
votes
1answer
141 views
SQLite full-text search relevance ranking
I am using the fts4 extension of sqlite3 to enable full-text indexing and searching of text data. This it working great, but I've noticed that the results are not relevance-ranked at all. I guess I am ...
5
votes
4answers
378 views
SQL delete from one table + a jointable?
I have three tables: log, activity and the jointable (many2many) log_activity (with log_id and activity_id + additional info data as columns).
I want to delete from log and log_activity.
I want to ...