a variable de configuration **SQLALCHEMY_ECHO**
<code python>
app.config["SQLALCHEMY_ECHO"] = True
</code>
===== Conversion d'un objet Query =====
La conv... est sérialisable vers le SGBDR (hérite de Model)
<code python>
>>> q = Shop.query.filter(Shop.name.like(... shops_name
FROM shops
WHERE shops.name LIKE ?
</code>
===== Références =====
* https://docs.sqlal