Hi,

> Is there a way to do executemany() semantic updates?  Suppose I have a list
> of employee id's and I want to do something like:
>
>  ids = [1, 2, 3, 4, 5, 6]
>  session.execute( tbl_employees.update(tbl_employees.c.id == ids),
> tbl_employees.c.status="you're fired" )

Just us the in_ syntax

session.execute( tbl_employees.update(tbl_employees.c.id.in_(ids)),
status="you're fired" )

Michael Trier
blog.michaeltrier.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to