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

16 lines
249 B
Markdown

---
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
```