Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この例では:
with db_session: p = select(_ for _ in Person in _.name == 'John')[:][0]
他の ORM で同様のクエリに対して生成される SQL を確認したいので、デバッグ目的でこれが必要です。
を使用できますpony.orm.sql_debug(True)。これにより、ポニーがトランザクションに含まれるたびに生成するすべての SQL が表示されます。Pony での SQL のデバッグ
pony.orm.sql_debug(True)