-
Reading through Gino's Engine and Connection documentation, there is link to SQLAlchemy's implicit execution documentation which currently displays a deprecation warning message:
Given the warning, I was wondering what the thought was for Gino's own implicit execution features. Will Gino's implicit execution style also be dropped? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Likely not. The contextual connection model is one of GINO's core features (inherited from pallets-eco/flask-sqlalchemy#447), and it's major use case is implicit execution. We will be able to do that without upstream support. But I'm also open to hear from the community if the reusing/reusable/lazy connections are useful, if this trade of explicitness for conveniece is worth it, as the explicit programming style in async is more popular now. |
Beta Was this translation helpful? Give feedback.
Likely not. The contextual connection model is one of GINO's core features (inherited from pallets-eco/flask-sqlalchemy#447), and it's major use case is implicit execution. We will be able to do that without upstream support.
But I'm also open to hear from the community if the reusing/reusable/lazy connections are useful, if this trade of explicitness for conveniece is worth it, as the explicit programming style in async is more popular now.