Reminds me of a saying that a good friend of the family used to say: 'when your in the pits (feeling bad), all you ever meet are other pitdwellers'
Can't help much, but I spend a lot of time there(tarpits), maybe I can help pull you out (or push you under with my 'help' :) ... Is this relevant? postgres, autoload, and odd datatypes: http://groups.google.ca/group/sqlalchemy/browse_thread/thread/4850231758a7ae37/76f165c913e16ef6?lnk=gst&q=reflection&rnum=8&hl=en#76f165c913e16ef6 And you might want to try overriding the reflected primary key to try 'enforcing' it to see if it helps: >From the docs: Overriding Reflected Columns Individual columns can be overridden with explicit values when reflecting tables; this is handy for specifying custom datatypes, constraints such as primary keys that may not be configured within the database, etc. >>> mytable = Table('mytable', meta, ... Column('id', Integer, primary_key=True), # override reflected 'id' to have primary key ... Column('mydata', Unicode(50)), # override reflected 'mydata' to be Unicode ... autoload=True) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
