Tagged Questions

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. Here is the official SQLite FAQ.

learn more… | top users | synonyms (1)

113
votes
8answers
97k 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, ...
4
votes
5answers
1k views

Using already created Database with Android

I have already created an sql lite database. I want to use this database file with my android project. I want to bundle this database with my application. Instead of application to create new ...
90
votes
5answers
31k 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 ...
201
votes
17answers
71k 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?
152
votes
4answers
22k 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 ...
148
votes
7answers
40k 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 ...
67
votes
5answers
17k 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 ...
17
votes
5answers
11k views

Use CoreData or SQLite on iPhone?

Since CoreData has become available for the iPhone in OS 3.0, is it meant to be the answer to data persistence and replace all need for direct SQLite? What reasons exist to still use SQLite? What are ...
123
votes
9answers
40k 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?
103
votes
16answers
25k 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 ...
57
votes
13answers
33k 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'); ...
85
votes
15answers
45k 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.
29
votes
12answers
38k 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.
13
votes
7answers
21k views

Where's the best SQLite 3 tutorial for iPhone-SDK?

I'm looking for an complete tutorial which not just tells me how an query is executed, but also how I set up the whole thing including setting up the library, creating an database, and so on. Where ...
3
votes
4answers
193 views

Merging intervals in one pass in SQL

Let's say I have a table with two columns: start and end, both integers, and the table is ordered by the first, then second column. Each row represents an interval. What I need is the table of ...
1
vote
2answers
2k views

Database not copying from assets

Little to say ill just paste my code hoping that someone will see what im missing: Database.Java package gr.peos; import java.io.FileOutputStream; import java.io.IOException; import ...
25
votes
3answers
28k 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 ...
14
votes
4answers
19k views

Reading and writing images to an SQLite DB for iPhone use

I've set up a SQLite DB that currently reads and writes NSStrings perfectly. I also want to store an image in the database and recall it later. I've read up a bit on using NSData and encoding the ...
9
votes
4answers
13k views

How do I use prepared statements in SQlite in Android?

How do I use prepared statements in SQlite in Android?
86
votes
12answers
14k 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 ...
60
votes
9answers
20k 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 ...
2
votes
5answers
7k views

How get a datetime column in SQLite with Objective C

How do you get a datetime column in SQLite with Objective C? I have a table with 4 fields: pk, datetime, value1 and value2. pk (primary key), value1 and value2 are integers so I am using: int ...
1
vote
4answers
4k views

How do I get around the “'” problem in sqlite and c#?

I'm working in Microsoft Visual C# 2008 Express with Sqlite. I understand that an apostrope (') in my text has problems in a query. My problem is that I thought I could replace it with \'. It ...
62
votes
9answers
29k 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 ...
31
votes
6answers
23k 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 ...
22
votes
9answers
15k 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 ...
17
votes
2answers
16k 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 ...
14
votes
5answers
13k views

Foreign key constraints in Android using SQLite? on Delete cascade

I have two tables: tracks and waypoints, a track can have many waypoints, but a waypoint is assigned to only 1 track. In the way points table I have a column called "trackidfk" which inserts the ...
10
votes
3answers
11k views

does android support JDBC

I know that on android there is android.database.sqlite package that provides helpfull classes to manage the internal android database. The question is - can i use the standard java.sql package to ...
12
votes
3answers
7k views

Why do I get a “sqlite3: not found” error on a rooted Nexus One when I try to open a database using the adb shell?

# sqlite3 /data/data/com.moodme.android/databases/moodme sqlite3 /data/data/com.moodme.android/databases/moodme sqlite3: not found
20
votes
3answers
10k 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 ...
22
votes
8answers
15k 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 ...
33
votes
3answers
12k views

Version of SQLite used in Android?

What is the 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 ...
9
votes
3answers
4k 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' ...
14
votes
1answer
5k views

SQLite Reset Primary Key Field

I have a few tables in SQLite and I am trying to figure out how to reset the autoincremented database field. I read that: "DELETE FROM tablename" should delete everything and reset the ...
8
votes
4answers
4k views

What are the advantages of VistaDB

I have seen the references to VistaDB over the years and with tools like SQLite, Firebird, MS SQL et. al. I have never had a reason to consider it. What are the benefits of paying for VistaDB vs ...
4
votes
3answers
7k views

Backup and restore SQLite database to sdcard

How can I backup my database to the sdcard automatically in my app? And afterward, how do I restore it?
2
votes
3answers
2k views

Android: column '_id' does not exist problem

I am getting this error IllegalArgumentException: column '_id' does not exist When using a simpleCursorAdapter to retrieve from my database, and the table does indeed have this _id ...
43
votes
19answers
24k 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 ...
23
votes
3answers
9k 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 ...
18
votes
3answers
16k 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 ...
18
votes
4answers
15k views

Android quotes within an sql query string

I want to perform a query like the following: uvalue = EditText( some user value ); p_query = "select * from mytable where name_field = '" + uvalue + "'" ; mDb.rawQuery( p_query, null ); if the ...
17
votes
2answers
15k views

Where would you place your SQLite database file in an iPhone app?

When I initially create an SQLite database file with pre-inserted datasets for my application, I would have to place this file somewhere in my Xcode project so that it goes to my iPhone application. I ...
16
votes
3answers
11k views

system.data.sqlite .net 4

Is there a .Net 4 version of System.Data.SQLite? At the moment I get this error: Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime ...
14
votes
7answers
19k views

Password Protect a SQLite DB. Is it possible?

I have to face a new little project. It will have about 7 or 9 tables, the biggest of them will grow by a max rate of 1000 rows a month. I thought about SQLite as my db... But i will need to protect ...
10
votes
3answers
7k views

How to sort text in sqlite3 with specified locale?

Sqlite3 by default sorts only by ascii letters. I tried to look in google, but the only thing I found were informations about collations. Sqlite3 has only NOCASE, RTRIM and BIARY collations. How to ...
8
votes
2answers
14k views

How do i store and retrieve a blob from sqlite

I have used sqlite in c++, python and now (perhaps) in C#. In all of these i have no idea how to insert a blob into a table. How do i store and retrieve a blob in sqlite?
10
votes
2answers
888 views

How to make my SQLiteDatabase a singleton?

I'm rather newbie on Android, and I'm working on a simple application to get some basic experience. My app is pretty simple and consists among other things of a broadcast receiver and some activities. ...
2
votes
3answers
998 views

Good Tutorial for SQLite and ListView

Can someone point me to a good tutorial for the SQLite and ListView? I have tried to follow several tutorials online only to get to the end and find the code is all eff'd up. I am sure you have all ...
3
votes
3answers
3k views

SQLite 3 - JDBC driver throws “ResultsSet Closed” exception on empty resultset

I a problem in JDBC driver for SQLite. I am executing a query with SELECT statement. If I get an empty resultset (0 rows) then I see a "Closed ResultSet" exception thrown when checking GetString(1). ...

1 2 3 4 5 58