Jeg tror, du kan indstille autocommit
i Flask-SQLAlchemy gør dette:
from flask.ext.sqlalchemy import SQLAlchemy
db = SQLAlchemy(session_options={'autocommit': True})
Rediger:'flask.ext.' formularen er nu afskrevet (se her )
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy(session_options={'autocommit': True})