Mike wrote:
>
> I'm upgrading a Pylons app from SQLAlchemy 0.3 to 0.4. One table
> is defined as:
>
> incidents = Table("IN_Incident", meta,
> Column("orr_id", Integer, primary_key=True),
> autoload=True, autoload_with=engine)
>
> The table is a MySQL VIEW that contains a column 'is_top'.
MySQL views aren't reflecting in the current beta (ticket 748). To
work around until it gets implemented, skip the autoload and
specify the columns.
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---