SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
151
votes
4answers
47k 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 ...
139
votes
4answers
37k 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 ...
5
votes
1answer
24k views
sqlite example program in android
I am Newbee to Database concepts specially i need relative database concepts..I want an example working that uses sqlite database for android..i walked through android developer site but found very ...
14
votes
4answers
18k 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 ...
64
votes
6answers
35k 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 ...
22
votes
5answers
28k 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 ...
18
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 ...
11
votes
3answers
6k 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'
...
15
votes
4answers
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 ...
26
votes
5answers
15k 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
6k views
Limit an sqlite Table's Maximum Number of Rows
I am looking to implement a sort of 'activity log' table where actions a user does are stored in a sqlite table and then presented to the user so that they can see the latest activity they have done. ...
13
votes
3answers
11k 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 ...
8
votes
2answers
4k 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 ...
102
votes
4answers
34k 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 ...
12
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 ...
1
vote
2answers
7k views
iphone “unable to open database file” for call_history.db in xcode app
I am trying to access database call_history.db in jailbroken iphone. i am able to access call_history.db for iphone 4 with ios 4.1 . But the problem is i am not able to access the database in iphone ...
1
vote
1answer
2k views
how to fit pdf page in entire view
i read pdf files and also displayed, the code is like this:
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
{
NSLog(@"the layer height %d, %d,%d ...
0
votes
5answers
6k views
Creating an SQLite3 database file through Objective-C
I'm trying to create an SQLite3 database file through Objective-C at run time. I am trying to create a table called "tblStore". I want the field names to be called "strStoreNumber" and ...
156
votes
14answers
37k 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 ...
7
votes
3answers
5k views
Is it possible to move the internal DB to the SDCard?
As the database in my app grows, it is going to require more and more of the internal phone space. There isn't any sensitive/private data in the DB, so I'm interested in moving it to the SD card.
I'm ...
21
votes
7answers
23k 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 ...
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 ...
5
votes
4answers
3k views
SQLite3 database doesn't actually insert data - iPhone
I'm trying to add a new entry into my database, but it's not working. There are no errors thrown, and the code that is supposed to be executed after the insertion runs, meaning there are no errors ...
4
votes
3answers
7k views
SQLite Exception: SQLite Busy
Can anyone provide any input on this error. I am trying to insert into table using Objective C.
While I am doing this, I am getting an error SQLite Busy. Why this is happening?
2
votes
3answers
740 views
Unable to connect SQLite Database in iOS
I am completely new to SQLite and iOS. I am following a basic tutorial on how to use SQLite in iOS:
http://www.switchonthecode.com/tutorials/using-sqlite-on-the-iphone#comment-11617
In the above ...
2
votes
2answers
780 views
Populate the table view sections with rows of table in sqlite database in an order
I have 2 view controller pages.Add Reminder page which contains save button as right bar button of navigation bar
I have earlier got issues regarding number of sections in table view for view ...
25
votes
5answers
53k 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
...
12
votes
2answers
12k 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 ...
14
votes
4answers
20k 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 ...
5
votes
4answers
9k views
How to view the data in sqlite fle running in iphone application?
How to view the data which is present in the sqlite file in an application running in iphone , like we use mysql work bench to view the contents of the database
6
votes
3answers
6k views
Sqlite on Android: How to create a sqlite dist db function - to be used in the app for distance calculation using lat, long
We are building an Android App that will use user's current location (lat, long) and show top 50 venues around the current location, sorted by distance.
We have these venues stored in an SQLite DB. ...
43
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 ...
12
votes
1answer
2k views
basic recursive query on sqlite3?
I have a simple sqlite3 table that looks like this:
Table: Part
Part SuperPart
wk0Z wk00
wk06 wk02
wk07 wk02
eZ01 eZ00
eZ02 eZ00
eZ03 eZ01
eZ04 eZ01
I need to run a ...
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 ...
5
votes
11answers
14k views
Can I alter a column in an sqlite table to AUTOINCREMENT after creation?
Can I make a field AUTOINCREMENT after made a table? For example, if you create a table like this:
create table person(id integer primary key, name text);
Then later on realise it needs to auto ...
2
votes
1answer
5k views
no such file to load — sqlite3/sqlite3_native
I am having trouble trying to run the following ruby script on OSX (Leopard).
require 'sqlite3'
database = SQLite3::Database.new( "new.database" )
database.execute( "create table ...
9
votes
2answers
3k views
Android sqlite concurrency without exceptions
Sqlite on android lets you access the database from multiple procs for reads, but if you're currently writing from one process, reads and writes from other procs will throw an exception because the ...
3
votes
2answers
402 views
SQLite 3: Character Issue While Ordering By Records
In my SQLite 3 Database, I have some records with Turkish characters such as "Ö", "Ü", "İ" etc. When I select my values with SELECT * FROM TABLE ORDER BY COLUMN_NAME query, the records that begin with ...
3
votes
4answers
18k views
Install sqlite3 on mac osx?
I just bought a new MBP
I've read online Sqlite3 already exists on OSX.
I've downloaded mac ports (and installed it) as well as the bin file for sqlite3 from the official web site.
In a guide I'm ...
2
votes
1answer
853 views
Migrate normal sqlite3 database to core data?
I have a normal pre-populated database. I want to migrate it to core data for my app. What is the best way to achieve this. By the way I have done these things, copied the recipes.sqlite database from ...
4
votes
1answer
2k views
Merge SQLite files into one db file, and 'begin/commit' question
This post refers to this page for merging SQLite databases.
The sequence is as follows. Let's say I want to merge a.db and b.db. In command line I do the following.
sqlite3 a.db
attach 'b.db' as ...
1
vote
4answers
7k views
sqlite3 insert and read BLOB data in database
I need to read and write BLOB data to a database. Here is my structure table
#define CREATE_TABLE_USERS_SQL "CREATE TABLE IF NOT EXISTS %@ ( \
UserID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, \
...
0
votes
2answers
3k views
Retrieve month part from date saved in sqlite database table for displaying month wise data
hope every one is doing well :)
I have struck with retrieving the month from the date that is saved in sqlite database.First of all,I would like to thank some of the experts who guided me for proper ...
45
votes
4answers
46k 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
...
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 ...
36
votes
4answers
29k 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?
...
9
votes
2answers
2k views
Why is SQLAlchemy insert with sqlite 25 times slower than using sqlite3 directly?
Why is this simple test case inserting 100,000 rows 25 times slower with SQLAlchemy than it is using the sqlite3 driver directly? I have seen similar slowdowns in real-world applications. Am I doing ...
30
votes
2answers
8k 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?
3
votes
1answer
3k views
Using Sqlite3 with CakePHP
I'm trying to run Sqlite3 with CakePHP. Yes, i know it's not officially supported, but this post here: http://stackoverflow.com/questions/1021980/cakephp-sqlite says it's possible. I've downloaded ...
3
votes
3answers
25k views
How to insert data into a SQLite database in iPhone
I am new to iPhone development. I want to insert certain data into my database and retrieve it
and display it in a table. I have created Database data.sqlite with table 'user'. The table has two ...




