278 B
278 B
title | date | description | tags | |
---|---|---|---|---|
SQLite pretty print | 2019-06-19 | How to pretty print your SQLite output |
|
The solution
In ~/.sqliterc
add the following :
{{< highlight sh >}}
.mode column
.headers on
.separator ROW "\n"
.nullvalue NULL
{{< /highlight >}}