更改 SQLite 默认设置

我们知道什么时候键入 .mode column让我看到像列的表 还有 .headers on,我们可以看到表的表头。 但是我想知道是否有办法使这两个默认设置?

对 sqlite 的源代码做一些修改? ? 这些设置是否有配置文件?

24264 次浏览

Put:

.headers on
.mode column

In a file called .sqliterc in the home directory of the user running sqlite.

(P.S. I found that in man sqlite3.)

Make sure using the following command to open the file:

nano ~/.sqliterc

then add

.headers on
.mode column

to the file and save it