更改 SQLite 默认设置

发布于 2024-10-21 12:38:37 字数 162 浏览 1 评论 0原文

我们知道什么时候输入.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

携余温的黄昏 2024-10-28 12:38:37

放置:

.headers on
.mode column

在运行 sqlite 的用户的主目录中名为 .sqliterc 的文件中。

(PS 我在 man sqlite3 中发现了这一点。)

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.)

不知在何时 2024-10-28 12:38:37

确保使用以下命令打开文件:

nano ~/.sqliterc

然后添加

.headers on
.mode column

到文件并保存

Make sure using the following command to open the file:

nano ~/.sqliterc

then add

.headers on
.mode column

to the file and save it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文