[sqlalchemy] Re: Accessing other schemas

2006-11-13 Thread Michael Bayer
well if you put sys in there twice yeah that'll break. I changed table.name to table.fullname in rev 2102, see if that works. On Nov 13, 2006, at 11:53 AM, Eric Brunson wrote: I think my original posting of this question may have gotten overlooked, since I added it to the bottom of a

[sqlalchemy] Re: Dealing with dropped database connections

2006-11-13 Thread Michael Bayer
assuming there is a window of downtime when the database is shut down, setting the pool_timeout parameter to a value similar to the downtime window will insure those connections are refreshed after a given interval of time. On Nov 13, 2006, at 12:11 PM, Hamish Lawson wrote: I have a

[sqlalchemy] Re: Accessing other schemas

2006-11-13 Thread Eric Brunson
Well, yeah, that's why I pointed out the first case where I only put sys in once. Should I just try the 0.3.1, would that incorporate the change you mention? Thanks, e. Michael Bayer wrote: well if you put sys in there twice yeah that'll break. I changed table.name to table.fullname in

[sqlalchemy] Re: Accessing other schemas

2006-11-13 Thread Eric Brunson
Gotcha, I'll wait until the change makes it into the main trunk, I can postpone the features that would need it. If it becomes more pressing, at least I know where to fix it. :-) Thank you very much, e. Michael Bayer wrote: at the moment youd have to use the SVN trunk. or just go into the

[sqlalchemy] Re: convert_unicode=True results in double encoding

2006-11-13 Thread Shannon -jj Behrens
On 11/12/06, Michael Bayer [EMAIL PROTECTED] wrote: since create_engine deals with class constructors, i went with this approach: def get_cls_kwargs(cls): return the full set of legal kwargs for the given cls kw = [] for c in cls.__mro__: cons = c.__init__ if