[sqlalchemy] Re: Schema Display recipe

2008-01-17 Thread sdobrev
Allen Bierbaum wrote: Thanks, that worked great. Have their been any new capabilities added to this code? no idea, never used it -Allen On Jan 17, 2008 12:21 PM, [EMAIL PROTECTED] wrote: use sqlalchemy.orm.class_mapper(cls) instead of cls.mapper, and it should work? Allen Bierbaum

[sqlalchemy] Re: Schema Display recipe

2008-01-17 Thread Allen Bierbaum
Thanks, that worked great. Have their been any new capabilities added to this code? -Allen On Jan 17, 2008 12:21 PM, [EMAIL PROTECTED] wrote: use sqlalchemy.orm.class_mapper(cls) instead of cls.mapper, and it should work? Allen Bierbaum wrote: I was just taking a look at the recipes

[sqlalchemy] Re: Schema Display recipe

2008-01-17 Thread sdobrev
use sqlalchemy.orm.class_mapper(cls) instead of cls.mapper, and it should work? Allen Bierbaum wrote: I was just taking a look at the recipes on the SA wiki and stumbled across this one: http://www.sqlalchemy.org/trac/wiki/UsageRecipes/SchemaDisplay It is a pretty nice little piece of code

[sqlalchemy] Re: Schema display

2008-01-07 Thread [EMAIL PROTECTED]
I tried to import boundMetadata and this has become MetaData, and I'm getting an import error ImportError: No module named sqlalchemy_schemadisplay So I was wondering if this has moved out of MetaData or been renamed. Morgan Michael Bayer wrote: where its always been...

[sqlalchemy] Re: Schema display

2008-01-07 Thread King Simon-NFHD78
PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 07 January 2008 09:44 To: sqlalchemy@googlegroups.com Subject: [sqlalchemy] Re: Schema display I tried to import boundMetadata and this has become MetaData, and I'm getting an import error ImportError: No module named sqlalchemy_schemadisplay

[sqlalchemy] Re: Schema display

2008-01-07 Thread Morgan
Hi Guys, Maybe I'm missing something. I tried to import boundMetadata and this has become MetaData, and I'm getting an import error ImportError: No module named sqlalchemy_schemadisplay So I was wondering if this has moved out of MetaData or been renamed. Morgan Michael Bayer wrote:

[sqlalchemy] Re: Schema display

2008-01-06 Thread Michael Bayer
where its always been... http://www.sqlalchemy.org/trac/wiki/UsageRecipes/SchemaDisplay On Jan 5, 2008, at 7:58 PM, [EMAIL PROTECTED] wrote: Hi Guys, I was wondering where the function create_schema_graph has gone, or what it has changed to. Any assistance would be appreciated. Let