[Sqlalchemy-users] suggestion for threadlocal docs

2006-05-30 Thread Brad Clements
regarding http://www.sqlalchemy.org/docs/plugins.myt#plugins_threadlocal The example shown uses a locally declared BoundMetaData object in table declaration. I could not get that to work with my setup, instead I had to use: from sqlalchemy.schema import default_metadata Tregion =

Re: [Sqlalchemy-users] suggestion for threadlocal docs

2006-05-30 Thread Michael Bayer
um yeah the docs for global_connect got whacked, and also the "default metadata" behavior did too, the way thats supposed to work is you make the Table with no metadata at all, and it would fall back on the "default_metadata"so you wouldnt need to import it.ill get that into SVN soon.On May

Re: [Sqlalchemy-users] suggestion for threadlocal docs

2006-05-30 Thread Brad Clements
On 30 May 2006 at 14:26, Michael Bayer wrote: um yeah the docs for global_connect got whacked, and also the default metadata behavior did too, the way thats supposed to work is you make the Table with no metadata at all, and it would fall back on the default_metadataso you wouldnt

Re: [Sqlalchemy-users] suggestion for threadlocal docs

2006-05-30 Thread Michael Bayer
right, i meant, i have to restore that functionality in the trunk. its not there right now. On May 30, 2006, at 2:27 PM, Brad Clements wrote: On 30 May 2006 at 14:26, Michael Bayer wrote: um yeah the docs for global_connect got whacked, and also the default metadata behavior did too, the