Reputation: 407
I am using Flask-sqlalchemy, how can I just configure it for no autoflush
. Currently I am doing something like
db = SQLAlchemy()
...
db.init_app(app)
...
db.session.configure(autoflush=False)
But it gives error. How to fix this.
Upvotes: 13
Views: 8609
Reputation: 15090
The session_options
parameter can be used to override session options. If provided it’s a dict of parameters passed to the session’s constructor.
db = SQLAlchemy(session_options={"autoflush": False})
Upvotes: 26