SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
162
votes
14answers
39k 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 ...
154
votes
4answers
48k views
Core Data vs SQLite 3 [closed]
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 ...
145
votes
4answers
39k views
What are the best practices for SQLite on Android?
What would be considered the best practices when executing queries on an SQLite db within an Android app?
Is it safe to run inserts, deletes and select queries from an AsyncTask's doInBackground ? Or ...
104
votes
4answers
36k 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 ...
67
votes
6answers
36k 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 ...
48
votes
4answers
49k 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
...
48
votes
1answer
6k 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 ...
39
votes
4answers
30k 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?
...
35
votes
2answers
9k 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?
30
votes
7answers
5k 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:
...
29
votes
6answers
16k 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 = ...
29
votes
3answers
11k 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 ...
27
votes
5answers
29k views
Windows GUI tool for sqlite3? [closed]
Im using the bundled sqlite3 version for rails and i wonder if there is an equivalent to phpmyadmin?
How else am i going to see what is in the database?
Thanks
25
votes
5answers
54k 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
...
24
votes
1answer
6k views
How to retrieve inserted id after inserting row in SQLite using Python?
How to retrieve inserted id after inserting row in SQLite using Python ? I have table like
id int autoincrement primary key,
username varchar(50),
password varchar(50)
and I insert new row with ...
23
votes
7answers
24k 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 ...
23
votes
2answers
10k 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 whole table from one DB to another. I didn't ...
23
votes
5answers
30k 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 ...
20
votes
2answers
3k 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 ...
19
votes
4answers
8k views
How do I drop a table from SQLite3 in DJango?
I made a model, and ran python manage.py syncdb. I think that created a table in the db. Then I realized that I had made a column incorrectly, so I changed it, and ran the same command, thinking that ...
19
votes
2answers
22k 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 ...
18
votes
2answers
9k 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 ...
18
votes
5answers
10k views
Deploying RoR app to Heroku with Sqlite3 fails
I'm trying to deploy my first app to Heroku. I'm using Sqlite as the database. As far as I know Heroku doesn't use Sqlite - it switches to Postgres in the backend.
When I'm deploying I get the ...
18
votes
6answers
6k 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 ...
18
votes
3answers
559 views
Why does SELECT results differ between mysql and sqlite?
I'm re-asking this question in a simplified and expanded manner.
Consider these sql statements:
create table foo (id INT, score INT);
insert into foo values (106, 4);
insert into foo values (107, ...
17
votes
2answers
15k views
does sqlite supports any kind of IF(condition) statement in the select
does anyone know if sqlite supports the sql function "if" in the select..
for example
select if( length( a ) > 4 , a , ' ') as b
from foo
which would return a if the length was over 4 chars ...
16
votes
5answers
7k views
HEROKU - cannot run git push heroku master
I run commands
heroku create --stack cedar
git push heroku master
but it gave me an error:
> Counting objects: 144, done. Delta compression using up to 2 threads.
> Compressing ...
16
votes
4answers
20k views
SQLite with encryption/password protection
I'm just learning to use SQLite and I was curious if such is possible:
Encryption of the database file?
Password protect opening of the database?
PS. I know that there is this "SQLite Encryption ...
15
votes
5answers
13k views
How i can see the structure of table in sqlite
How can I see the structure of Table in sqlite as "desc" was in oracle
15
votes
3answers
7k 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 ...
15
votes
3answers
11k 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 ...
15
votes
1answer
782 views
Deploying a Windows 8 Metro application that uses SQLite
Background
We're using System Center 2012 to deploy a Windows 8 Metro-style application to Samsung slates in the field running Windows 8 Enterprise x64. The slates are joined to the domain and have ...
14
votes
4answers
21k views
ALTER COLUMN in sqlite
How do I alter column in sqlite?
This is in Postgrsql
ALTER TABLE books_book ALTER COLUMN publication_date DROP NOT NULL;
I believe there is no ALTER COLUMN in sqlite at all, only ALTER TABLE is ...
14
votes
6answers
17k views
rails sqlite adapter error
I'm following the instructions in rails tutorial and got stuck when trying to use the scaffold command.
When running:
rails generate scaffold User name:string email:string
I get the error:
...
14
votes
6answers
4k views
Options for using System.Data.SQLite in a 32bit and 64bit C# world
I understand WHY the System.Data.SQLite.dll is provided in 32 bit and 64 bit builds. So lets not dwell on that and move on. :)
Since it is done this way it seems to make pure C# development a tad ...
14
votes
1answer
5k views
How to increase max pool size in ActiveRecord?
I get the error:
Error "ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it."
How do I increase ...
14
votes
1answer
6k 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 ...
13
votes
2answers
4k 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 ...
13
votes
7answers
2k 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 ...
13
votes
3answers
12k 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 ...
13
votes
2answers
4k views
What are valid table names in SQLite?
What are the combination of characters for a table name in SQLite to be valid? Are all combinations of alphanumerics (A-Z, a-z and 0-9) constitute a valid name?
Ex. CREATE TABLE 123abc(...);
What ...
13
votes
3answers
11k 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
...
13
votes
6answers
12k views
How to change Sqlite database mode?
How can I change Sqlite database from read-only to read-write? When I execute Update statement, I always got SQL error: attempt to write a readonly database.
Cheers,
13
votes
1answer
347 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 ...
13
votes
4answers
201 views
Connect to a Database in Flask, Which Approach is better?
Method One: Using special g object from http://flask.pocoo.org/docs/tutorial/dbcon/ and http://flask.pocoo.org/docs/patterns/sqlite3/
import sqlite3
from flask import g
DATABASE = ...
13
votes
3answers
3k views
Deleting duplicate rows from sqlite database
I have a huge table - 36 million rows - in SQLite3.
In this very large table, there are two columns
hash - text
d - real
However, some of the rows are duplicates. That is, both hash and d have ...
12
votes
4answers
6k views
“sqlite3.h” missing when pushing Rails app to Heroku
I'm following this tutorial, but it fails when I try to push to Heroku. It seems "sqlite3.h" is missing. I'm new to development so I'm not sure what information will help people diagnose the ...
12
votes
4answers
14k views
How to delete or add column in SQLITE?
I want to delete or add column in sqlite database
I am using following query to delete column.
ALTER TABLE TABLENAME DROP COLUMN DIST_TYPE
But it gives error
System.Data.SQLite.SQLiteException: ...
12
votes
3answers
8k views
SQLite Insert very slow?
I recently read about SQLite and thought i would give a try . But when i see insert 1 record it was okay . But when i was inserting 100 it takes 5 sec and as the record size increases and so the time ...
12
votes
4answers
10k 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 ...

