So first I am fetching the rows:
q = session.query(products)
for p in q:
p.someproperty = 23
session.commit()
Should the above work in theory? Or is that the wrong pattern?
I am getting an error saying can't modify the property, which is strange so I figured I was doing something fundamentally wrong.