Top "Sqlite" questions

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

SQLite DateTime comparison

I can't seem to get reliable results from the query against a sqlite database using a datetime string as a …

sql sqlite
How to delete SQLite database from Android programmatically

I would like to delete the database file from the Android file system programatically? Can I have a shell script …

android sqlite
How do I rename a column in a SQLite database table?

I would need to rename a few columns in some tables in a SQLite database. I know that a similar …

sqlite alter-table
Sqlite: CURRENT_TIMESTAMP is in GMT, not the timezone of the machine

I have a sqlite (v3) table with this column definition: "timestamp" DATETIME DEFAULT CURRENT_TIMESTAMP The server that this database …

sql sqlite timezone timestamp
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 …

c# .net sqlite .net-4.0 system.data.sqlite
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 …

sqlite case-insensitive
Android SQLite: Update Statement

I need to implement SQLite in my application. I followed this tutorial.. Creating and using databases in Android one Everything …

android sql sqlite
Import CSV to SQLite

I'm trying to import a csv file to an SQLite table. Example csv: 1,2 5,6 2,7 Example command: sqlite> create table foo(…

sqlite
rawQuery(query, selectionArgs)

I want to use select query for retrieving data from table. I have found, rawQuery(query, selectionArgs) method of SQLiteDatabase …

android sqlite
Convert NSData to String?

I am storing a openssl private Key EVP_PKEY as nsdata. For this I am serializing into a byte stream …

iphone ios sqlite openssl nsdata