Getting started with SQLite
1 min read
In a new database
sqlite> .databases
main: /Users/nindalf/.mcfly/history.db
sqlite> .table
commands schema_versions selected_commands
sqlite> .schema commands
CREATE TABLE commands( id INTEGER PRIMARY KEY AUTOINCREMENT ...
For more, try .help
, but I didn't see anything that seemed immediately helpful.