user_3068807
user_3068807

Reputation: 407

Flask-sqlalchemy disable autoflush for the whole session

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

Answers (1)

r-m-n
r-m-n

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

Related Questions