Top "Sqlite" questions

SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.

How to delete all records from table in sqlite with Android?

My app has two buttons, the first button is for deleting record on user input and the second button is …

android sqlite
Java and SQLite

I'm attracted to the neatness that a single file database provides. What driver/connector library is out there to connect …

java sqlite
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 …

sql sqlite upsert
How to store image in SQLite database

In my application I am uploading an image from gallery and I want to store this image in the SQLite …

android sqlite android-emulator
Quick easy way to migrate SQLite3 to MySQL?

Anyone know a quick easy way to migrate a SQLite3 database to MySQL?

mysql sqlite migration
How can one see the structure of a table in SQLite?

How can I see the structure of table in SQLite as desc was in Oracle?

sqlite
How do I view the SQLite database on an Android device?

I have a set of data in an SQLite database. I need to view the database on a device. How …

android database sqlite adb
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 …

sqlite
Store boolean value in SQLite

What is the type for a BOOL value in SQLite? I want to store in my table TRUE/FALSE values. …

sqlite
Sqlite primary key on multiple columns

What is the syntax for specifying a primary key on more than 1 column in SQLITE ?

sqlite primary-key ddl composite-primary-key