see http://www.sqlalchemy.org/docs/orm/query.html#sqlalchemy.orm.query.Query.update
We use session.query(......).update(......,synchronize_session=False) for updates where we are sure about the criteria and session state. This generates an update statement without any selects. -- Mike Conley -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
