[sqlalchemy] Re: Weird problem in SqlSoup

2007-07-13 Thread bbull
The latest trunk seems to have fixed this issue. Thanks On Jul 12, 6:22 pm, jason kirtland [EMAIL PROTECTED] wrote: bbull wrote: I have some code that returns what I'm calling a table object. return getattr(self.dbc, tablename) where self.dbc is an SqlSoup object and tablename

[sqlalchemy] Re: Autoload problem with my MySql server

2007-07-12 Thread bbull
I just tested this on MySQL 4.0.20c and it seems to have solved the autoload problem. What is the timeframe for cutting the 0.3.9 release? Brian On Jul 12, 1:00 pm, jason kirtland [EMAIL PROTECTED] wrote: I've made changes in the trunk for 0.3.9 that I hope will take care of reflection

[sqlalchemy] Re: Autoload problem with my MySql server

2007-07-11 Thread bbull
I've run into this problem as well when working with MySQL 4.0.20c. I believe the code needs to read: decode_from = connection.execute(show variables like 'character_set').fetchone()[0] When issuing that sql at the command prompt, i get back the following: mysql show variables like