在 SQLAlchemy 中打印实际的 SQL 查询
在 SQLAlchemy 中,了解如何显示与数据库操作相对应的原始 SQL 至关重要。这对于排除故障、调试和优化应用程序的数据库通信至关重要。
一般方法
在大多数情况下,您可以轻松查看语句的 SQL 字符串表示形式或查询:
<code class="python">print(str(statement))</code>
这适用于 ORM 查询和原始 select() 表达式。
编译为特定方言
If您需要查看针对特定方言或引擎编译的 SQL,可以使用compile()方法:
<code class="python">print(statement.compile(someengine))</code>
或不使用引擎:
<code class="python">from sqlalchemy.dialects import postgresql print(statement.compile(dialect=postgresql.dialect()))</code>
内联绑定参数
SQLAlchemy 中的默认行为是在 SQL 字符串中使用绑定参数,通过防止 SQL 注入攻击来确保安全性。要绕过绑定参数和内联实际值,请在compile_kwargs中使用literal_binds标志:
<code class="python">print(s.compile(compile_kwargs={"literal_binds": True}))</code>
对于此方法不支持的自定义类型,请使用process_literal_param方法实现TypeDecorator以确保内联渲染:
<code class="python">class MyFancyType(TypeDecorator): def process_literal_param(self, value, dialect): return "my_fancy_formatting(%s)" % value print( tab.select().where(tab.c.x > 5).compile( compile_kwargs={"literal_binds": True}) )</code>
以上是如何在 SQLAlchemy 中显示实际的 SQL 查询?的详细内容。更多信息请关注PHP中文网其他相关文章!