(SOLVED!) This message is just for the case that someone gets the above
error message and searches this group.
I had it today, and the reason was a missing "Integer" in table Column
creation, like that:            Column("aggrby", ForeignKey("sim_biobj.id"),
nullable=False)
instead of:
Column("aggrby", Integer, ForeignKey("sim_biobj.id"), nullable=False)

Its not easy to find since it appeared later in a query that seemed not
related to the defective table. Hope this will save some debug time for
someone.
---
(sqlalchemy Version 0.3.1)


--~--~---------~--~----~------------~-------~--~----~
 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