在 SQLAlchemy 中检索具有实际值的 SQL 查询
使用 SQLAlchemy 时,打印正在执行的实际 SQL 查询非常有用,包括使用的具体值,而不是抽象绑定参数。
以下是如何在 SQLAlchemy 中实现此目的:
<code class="python">print(str(statement))</code>
这种简单的方法适用于 ORM 查询对象和 select() 或其他语句类型。如果您想获取编译为特定方言或引擎的查询,您可以将适当的参数传递给compile():
<code class="python">print(statement.compile(someengine)) print(statement.compile(dialect=postgresql.dialect()))</code>
使用 ORM 查询对象时,首先访问 .statement 访问器获取compile()方法:
<code class="python">statement = query.statement print(statement.compile(someengine))</code>
如果您需要将绑定参数内联到最终字符串中,SQLAlchemy对此的支持有限。您可以在调用compile()时使用“literal_binds”标志:
<code class="python">print(s.compile(compile_kwargs={"literal_binds": True}))</code>
但是,这仅适用于整数和字符串等简单类型。对于自定义类型,您需要使用 TypeDecorator 和 TypeDecorator.process_literal_param 方法来提供自定义格式:
<code class="python">print( tab.select().where(tab.c.x > 5).compile( compile_kwargs={"literal_binds": True}) )</code>
此方法允许在生成的 SQL 查询字符串中内联呈现自定义类型。
以上是如何在 SQLAlchemy 中打印具有实际值的 SQL 查询?的详细内容。更多信息请关注PHP中文网其他相关文章!