--- tags: - Cheetsheet --- Connect to SQLite ----------------- | Command | Description | | --- | --- | | `sqlite3 ` | Connect to a SQLite database | SQLite CLI Commands ------------------- | Command | Description | | --- | --- | | `.databases` | List all databases | | `.tables` | List all tables in the current database | | `.schema ` | Show the schema of a table | | `.indexes
` | List all indexes in a table | | `.show` | Show the current settings | | `.help` | Show help information | | `.shell ` | Backup the current database to a file | | `.restore ` | Restore a database from a file | | `.dump` | Dump the database as SQL statements |