[EMAIL PROTECTED] wrote:
> nuc_word_table.update(nuc_word_table.c.word_id==old_word_id,
> nuc_word_table.c.nuc_word_seq_num==oligo1
> ).execute(word_id=new_word_id)
>
you need the and_ in there:
nuc_word_table.update(
and_(nuc_word_table.c.word_id==old_word_id,
nuc_word_table.c.nuc_word_seq_num==oligo1
)
).execute(word_id=new_word_id)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---