Sqlite
From DWIKI
Links
Performance tuning sqlite
TODO
Cheatsheetje
Show tables
.tables
Select all from table
select * from mytable;
Describe table
.schema mytable
Describe all tables
.schema
FAQ
Check integrity
PRAGMA integrity_check;
TODO
.tables
select * from mytable;
.schema mytable
.schema
PRAGMA integrity_check;