Search Results

2
votes

How do I unlock a SQLite database?

The SQLite wiki DatabaseIsLocked page offers a good explanation of this error message. It states, in part, that th …
2
votes

Difference between 2 dates in SQLite

The SQLite wiki is a great reference and the DateAndTimeFunctions page is a …
3
votes

Objective-C and sqlite’s DATETIME type.

I have zero experience with Objective-C, but I found Apple's …
6
votes

get list of tables, db schema, dump etc in Python sqlite3

You can fetch the list of tables and schemata by querying the SQLITE_MASTER table: sqlite> .tab job snmptarget t1 t2 t3 sqlite> select name …
0
votes

Bug in SQLite self-join on id?

SQLite version 3.6.2 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> create table mytable ( ...> id integer not null, ...> name varchar, …