sqlite
Installation
SKILL.md
SQLite
sqlite3 CLI Basics
sqlite3 myapp.db # open or create a database
sqlite3 :memory: # in-memory database
sqlite3 myapp.db ".tables" # one-shot command
sqlite3 myapp.db < schema.sql # run SQL from file
Common dot-commands inside the shell: