title | category | tags | output | ||
---|---|---|---|---|---|
.sqliterc |
sqlite |
|
dot_sqliterc |
Default configurations imported by sqlite3 sessions
By enabling headers, all queries that return data will include column names, instead of just unlabelled data.
.headers on
By defaulting to line mode, results will be returned with a newline between each result.
Without this, results will be returned squished into one long line. For large tables, this can be borderline unreadable.
.mode line