.sqliterc
- One minute read - 101 wordsI came across Better output from sqlite3 command line.
His .sqliterc file did not work for me, but the simpler
.mode "column"
.headers on
did work nicely.
I also found out that brew install sqlite3 does not install the sqlite3 binary to $PATH, which stinks.
The sqlite3 environment is still much less pleasant than the mysql cli.
A few things on my wishlist:
- tab completion of tables, fields, keywords, and functions.
- nicer
.schemaoutput – I’ve just gotten really used to reading them in mysql output
It sounds like maybe apsw can be something useful? Or maybe Navicat? (but that’s expensive)