]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - sqlite/sqliterc.in
sqlite: add, sqlite3 configuration file
[config/dotfiles.git] / sqlite / sqliterc.in
1 # sqlite3 configuration file.
2 #
3 # sqlite3 doesn't support comments in ~/.sqliterc. They must be stripped
4 # before using this file.
5
6 # Copyright (C) 2014  Simon Ruderich
7 #
8 # This file is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
20
21
22 # Enable column output mode with headers. Used for SELECT statements and makes
23 # them more readable.
24 .mode column
25 .headers on
26
27 # Display NULL value as "NULL".
28 .nullvalue NULL