I am creating a session to the DB using
sessionmaker(bind=engine)
Then I want to read all data from a DB table using
session.query(SomeTask).all()
The second call and on, are always giving me the same result as the first call although the data in the DB changes (assume I am changing the data in the DB using an external tool like MySQL workbench)
I am changing the code in the DB using a tool
How do I force a call to the DB each time ?