使用 sqlalchemy 0.6 记录查询

发布于 2024-11-10 18:32:50 字数 320 浏览 3 评论 0原文

在turbogears 2.1 和sqlalchemy 0.7 中,来自控制台的查询被记录到stdout。然而我需要降级到 0.6,它们就不再出现了。日志记录的文档似乎是相同的,我在变更日志中找不到任何内容。如何登录sqlalchemy 0.6?

编辑 DBSession.bind.echo 设置为 False。如果我将其设置为 True ,它就可以工作。知道如何正确设置它(我修改了 model/__init__.py 设置 engine.echo = True)。

With turbogears 2.1 and sqlalchemy 0.7 the queries from console were logged out to stdout. However I needed to downgred to 0.6 and they no longer appear. Documentation of logging seems to be identical and I couldn't find anything in changelog. How to log in sqlalchemy 0.6?

EDIT The DBSession.bind.echo is set to False. If I set it to True it works. Any idea how to set it correctly (I'v modified model/__init__.py setting engine.echo = True).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

城歌 2024-11-17 18:32:52

我不了解 TurboGears,但您需要确保引擎的 echo 设置设置为 True,例如

engine = sqlalchemy.create_engine('sqlite:///:memory:', echo=True)

默认情况下,echo设置为 False,因此查询不会记录到标准输出。 TG 对两个 SA 版本的配置可能不同。

I don't know about TurboGears, but you need to ensure that the engine's echo setting is set to True, e.g.

engine = sqlalchemy.create_engine('sqlite:///:memory:', echo=True)

By default, the echo setting is False, so queries aren't logged to stdout. It's possible that TG configures the two SA versions differently.

海螺姑娘 2024-11-17 18:32:52

您的配置文件应该具有指定的选项。查找 development.ini 中的内容

sqlalchemy.echo = true
sqlalchemy.echo_pool = true

Your configuration file should have the specified options. Look for those inside the development.ini

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