May help others:

instead of  "col in const.columns"

I needed "col in list(const.columns)"

to avoid: "sqlalchemy.exc.ArgumentError: __contains__ requires a string argument" with the ColumnCollection object



On 4/30/2010 4:16 PM, Michael Bayer wrote:
Kent wrote:
I did read 0.6 Migration document.

I was using the contains_column method of ForeignKeyConstraint.
Apparently removed?

AttributeError: 'ForeignKeyConstraint' object has no attribute
'contains_column'

Easy workaround or replacement call?
it has a "columns" collection where you can say "col in const.columns".




--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.



--
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to