[sqlalchemy] Re: Overriding reflected columns in SqlSoup?

2009-04-29 Thread Neil
Stephen, Thanks for the response. I got around the primary key by making explicit sql queries (luckily only a few small tables were problematic.) Thanks again, -neil On Tue, Apr 28, 2009 at 1:11 AM, Stephen Emslie stephenems...@gmail.comwrote: Hi Neil I managed to make queries on those

[sqlalchemy] Re: Overriding reflected columns in SqlSoup?

2009-04-28 Thread Stephen Emslie
Hi Neil I managed to make queries on those tables by creating a new table definition and getting a class mapping from that explicitly, for example: from sqlalchemy.ext.sqlsoup import SqlSoup from sqlalchemy import * engine = create_engine('sqlite:///:memory:') metadata =