Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 562 Bytes

File metadata and controls

30 lines (21 loc) · 562 Bytes
title .sqliterc
category sqlite
tags
databases
sqlite
output 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