Re: [Sqlalchemy-users] runtime-generated table classes

2006-03-09 Thread Michael Bayer
dont forget myghty !   ;)On Mar 9, 2006, at 4:51 PM, Jonathan Ellis wrote:Nothign official, but my user group is doing a meeting on web frameworks; we're using the pyweboff challenge as a basis for comparison.  Easier than coming up with a new one. :)On 3/9/06, Michael Bayer <[EMAIL PROTECTED]> wro

Re: [Sqlalchemy-users] runtime-generated table classes

2006-03-09 Thread Jonathan Ellis
Nothign official, but my user group is doing a meeting on web frameworks; we're using the pyweboff challenge as a basis for comparison.  Easier than coming up with a new one. :)On 3/9/06, Michael Bayer <[EMAIL PROTECTED]> wrote: I think its a neat idea.  its like youre turning ORM into a row data

Re: [Sqlalchemy-users] runtime-generated table classes

2006-03-09 Thread Michael Bayer
I think its a neat idea.  its like youre turning ORM into a row data gateway.  is there another PyWebOff going on ?On Mar 9, 2006, at 2:41 PM, Jonathan Ellis wrote:Ah!  Thanks, that would have taken me forever to notice.I finished my pyweboff demo with it.  I like how it flows.  What do you think o

Re: [Sqlalchemy-users] runtime-generated table classes

2006-03-09 Thread Jonathan Ellis
Ah!  Thanks, that would have taken me forever to notice.I finished my pyweboff demo with it.  I like how it flows.  What do you think of the idea?On 3/8/06, Michael Bayer <[EMAIL PROTECTED]> wrote: call commit() on objectstore, or the session itself, i.e.objectstore.get_session().commit()the ORM-l

Re: [Sqlalchemy-users] runtime-generated table classes

2006-03-08 Thread Michael Bayer
call commit() on objectstore, or the session itself, i.e.objectstore.get_session().commit()the ORM-level commit is completely different from the engine-level commit() :) .On Mar 9, 2006, at 12:33 AM, Jonathan Ellis wrote:I'm trying to create an api (sqlalchemy.simple?) that allows unsophisticated d

[Sqlalchemy-users] runtime-generated table classes

2006-03-08 Thread Jonathan Ellis
I'm trying to create an api (sqlalchemy.simple?) that allows unsophisticated db manipulation without explicit table classes.  (Code attached.)  Seems to work fine except I can't get inserts to work.  My objects go into the UnitOfWork but they still do not get committed.  I suspect it's something si