-
-
Save sfelde/1853908 to your computer and use it in GitHub Desktop.
A readable way how to work with Flask-SQLAlchemy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Transaction(object): | |
def __init__(self, db): | |
self.db = db | |
def __enter__(self): | |
return self.db.session | |
def __exit__(self, type, value, traceback): | |
if not value: | |
self.db.session.commit() | |
# now we can do this: | |
with Transaction(db) as session: | |
admin = User('admin', '[email protected]') | |
session.add(admin) # session is available for adding etc. | |
# automatic commit performed when exiting 'with' section | |
with Transaction(db): | |
admin.email = '[email protected]' | |
# automatic commit performed when exiting 'with' section | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment