From 5986113e20ff051164b66cf7c198a486c3b9cd55 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 1 Oct 2015 20:50:51 +0300 Subject: [PATCH] .sqliterc: major update --- .sqliterc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.sqliterc b/.sqliterc index 3e48178..ae368dc 100644 --- a/.sqliterc +++ b/.sqliterc @@ -1,3 +1,13 @@ +.output /dev/null .headers on .mode columns +.nullvalue NULL +.timer on PRAGMA cache_size=500000; +-- PRAGMA count_changes = OFF; +PRAGMA foreign_keys = ON; +-- PRAGMA journal_mode = MEMORY; +-- PRAGMA locking_mode = EXCLUSIVE; +-- PRAGMA synchronous = OFF; +-- PRAGMA temp_store = MEMORY; +.output stdout -- 2.39.2