[sqlalchemy] Re: vote for Python - PLEASE!

2007-10-19 Thread Daniel Haus
Looks like you're frighteningly successful. You're right, python could use much more love, but look at this! Obviously the poll is not representative anymore, is it... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[sqlalchemy] Re: customize table creation

2007-01-10 Thread Daniel Haus
On 9 Jan., 22:59, Jonathan Ellis [EMAIL PROTECTED] wrote: You're trying to dynamically add columns to the table in the database, or just to the Table instance? Just to the Table instance, no database tables should exist at that point. --~--~-~--~~~---~--~~

[sqlalchemy] customize table creation

2007-01-09 Thread Daniel Haus
Hi alchemists! Is there any way to have SA do some custom work before it creates a table? I tried to subclass Table and override create, which obviously doesn't work that easily. Any suggestions or ideas? The background is, I have some objects that dynamically add columns to the table on

[sqlalchemy] Re: TurboEntity announcement

2006-11-01 Thread Daniel Haus
That's very good news, maybe we can pull together the best pieces of both approaches? I'd really like to see your solution. Daniel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this

[sqlalchemy] TurboEntity announcement

2006-10-30 Thread Daniel Haus
TurboEntity is a high-level declarative layer on top of SQLAlchemy, inspired by - but somewhat thicker than - Jonathan LaCour's ActiveMapper extension. Features currently include: - automatic polymorphic inheritance - easy specification of relationships - automatic creation of primary keys -