aboutsummaryrefslogtreecommitdiff
path: root/content/blog/miscellaneous/sqlite-pretty-print.md
blob: 12898245edc5b6415fb8c359607c3093a5adc7ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: "SQLite pretty print"
date: 2019-06-19
description: How to pretty print your SQLite output
tags:
  - SQLite
---

## The solution
In `~/.sqliterc` add the following :
```cfg
.mode column
.headers on
.separator ROW "\n"
.nullvalue NULL
```