I\'m looking for a complete example of using select for update in SQLAlchemy, but haven\'t found one googling. I need to lock a single row and update a column, the followin
Yes, you do need to commit, which you can execute on the Engine or create a Transaction explicitely. Also the modifiers are specified in the values(...) method, and not execute: