[sqlalchemy] Re: portable schema

2007-01-17 Thread Michael Bayer
if you want the behavior to happen within SA itself in a transparent way, youd have to provide redefined versions of sqlite.SLDialect and mysql.MSDialect and friends which add these behaviors in. but personally I wouldnt want to insert those behaviors into SA itself. id rather write an app

[sqlalchemy] Re: portable schema

2007-01-15 Thread Michael Bayer
On Jan 15, 2007, at 12:05 PM, Manlio Perillo wrote: My idea is simple. 1) When the database does not support schema, the schema name specified in Table costructor should be prepended to the table name. foo = Table('foo', ..., schema='bar') result in a table named bar_foo why