www/content/blog/miscellaneous/sqlite-pretty-print.md

17 lines
246 B
Markdown
Raw Normal View History

2020-04-28 17:29:52 +02:00
---
title: "Sqlite pretty print"
linkTitle: "Sqlite pretty print"
date: 2019-06-19
description: >
Sqlite pretty print
---
- In ~/.sqliterc :
{{< highlight sh >}}
.mode column
.headers on
.separator ROW "\n"
.nullvalue NULL
{{< /highlight >}}