使用 SQlite,如何显示当前的 PRAGMA 设置?
使用 SQlite,如何显示当前的 PRAGMA 设置?
设置它们时,它们是持久的,还是需要在每个查询中都设置?
克里斯
With SQlite, how do you show current PRAGMA settings?
And when setting them, are they persistent, or do they need to be set with every query?
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最简单的形式中,只需使用语法
PRAGMA
执行 SQL 语句即可获取当前的 pragma 设置。例如,当使用 PDO 在 PHP 中进行调试时,您可以执行如下操作:要设置值,请使用
PRAGMA; = <值>
。但是,不会有返回值(因此不必费心获取
任何东西)。至于第二个问题,即命令是否持久,正如 turlando 所说,没有通用答案,因为这取决于发布哪条 PRAGMA 声明。只需检查sqlite pragma 文档即可确定。如果您不确定,只需使用上面的代码来检查您的设置是否仍然存在。
In the simplest form, current pragma settings can be obtained by simply executing an sql statement with the syntax
PRAGMA <command>
. For example, when debugging in PHP using PDO, you could do something like this:To set the values, use
PRAGMA <command> = <value>
. There will be no return value, however (so don't bother withfetch
ing anything).As to the second question of whether the commands are persistent, as turlando said, there is no general answer as it is depends on which PRAGMA statement is being issued. Just check the sqlite pragma docs to be sure. And if you are uncertain, simply use the above code to check whether your settings have persisted.