更改 SQLite 默认设置
我们知道什么时候输入.mode column
让我看到像column这样的表格 而 .headers on
,我们可以看到表的标题。 但我想知道有没有办法让这两个默认设置?
对sqlite的源代码进行一些修改吗? 或者有这些设置的配置文件吗?
we know when type .mode column
let me see tables like column
And .headers on
, we can see the header of tables.
But I want to know if there is any way make the two default settings?
Do some modify for the source code of sqlite??
OR is there a config file for these settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
放置:
在运行 sqlite 的用户的主目录中名为
.sqliterc
的文件中。(PS 我在
man sqlite3
中发现了这一点。)Put:
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:
then add
to the file and save it