I have a situation, where I save something to a postgres database with
with dbsession.begin() as session:
and as a next step, outside of the with-clause, I try to get the just updated value, with the following call:
table.query.filter(table.name == full_name).all()
the query works perfectly, except that it doesn't deliver the current (updated) values.
any idea, why this happens? can someone explain, why the query without a session does not load the current data?
Thanks for your help