aboutsummaryrefslogtreecommitdiff
path: root/content/blog/miscellaneous/sqlite-pretty-print.md
blob: 08bcec6632ce1767e3b7807fc8726e4c9a4b6e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
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 >}}