[sqlalchemy] Re: sqlalchemy introspection How?

2007-05-04 Thread Michael Bayer
On May 4, 2007, at 4:08 PM, johnny wrote: theres another extension called SqlSoup that does what I think youre asking for. creates the classes on the fly for each table which it also reflects on the fly. http://www.sqlalchemy.org/trac/wiki/SqlSoup This is what I need. I have one more

[sqlalchemy] Re: sqlalchemy introspection How?

2007-05-03 Thread Michael Bayer
On Apr 28, 2007, at 12:00 PM, johnny wrote: What I was trying to get was, there isn't a python command line option, that will create Object Mapper Classes for the tables, so I can import them within my applications. I guess, I have to code these every time I need to use a certain table

[sqlalchemy] Re: sqlalchemy introspection How?

2007-04-28 Thread Andreas Jung
--On 27. April 2007 12:57:06 -0700 johnny [EMAIL PROTECTED] wrote: Does this create a Object Mappers for those tables, so I can do the following: Lets say I have a table called user with columns user_name and password. ed = User() ed.user_name = 'Ed' ed.password = 'edspassword' You might

[sqlalchemy] Re: sqlalchemy introspection How?

2007-04-28 Thread Andreas Jung
--On 28. April 2007 09:00:36 -0700 johnny [EMAIL PROTECTED] wrote: What I was trying to get was, there isn't a python command line option, that will create Object Mapper Classes for the tables, What should that be? so I can import them within my applications. I guess, I have to code