Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 562 Bytes

sqliterc.md

File metadata and controls

30 lines (21 loc) · 562 Bytes
title category tags output
.sqliterc
sqlite
databases
sqlite
dot_sqliterc

~/.sqliterc

Default configurations imported by sqlite3 sessions

.headers on

By enabling headers, all queries that return data will include column names, instead of just unlabelled data.

.headers on

.mode line

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