Files
Compose-Files/Backups/Miker/.trash/SQLite Cheat-Sheet.md
T
2026-07-20 09:23:17 -04:00

800 B

Connect to SQLite

Command Description
sqlite3 <db> Connect to a SQLite database

SQLite CLI Commands

Command Description
.databases List all databases
.tables List all tables in the current database
.schema <table> Show the schema of a table
.indexes <table> List all indexes in a table
.show Show the current settings
.help Show help information
.shell <command Run a shell command
.exit Quit SQLite

Backup and Restore

Command Description
.backup <file> Backup the current database to a file
.restore <file> Restore a database from a file
.dump Dump the database as SQL statements