28
loading...
This website collects cookies to deliver better user experience
person = Person(name='Amr')
db.session.add(person)
db.session.commit()
Proposed database changes are not immediately committed to the database once they're defined.
Changes go through stages in order to provide the ability to "undo" a mistake.
before committing it to a database.