Re: [SQLObject] Re: [Sqlalchemy-users] SQLObject and SQLAlchemy

2006-03-22 Thread Ian Bicking
Michael Bayer wrote: There are currently two ways to construct SQL expressions with SQLAlchemy without any knowledge of a database connection or implementation. One is to use the ProxyEngine, which receives a connect() call when you are ready to connect it to something, which occurs only w

Re: [SQLObject] Re: [Sqlalchemy-users] SQLObject and SQLAlchemy

2006-03-22 Thread Michael Bayer
There are currently two ways to construct SQL expressions with SQLAlchemy without any knowledge of a database connection or implementation. One is to use the ProxyEngine, which receives a connect() call when you are ready to connect it to something, which occurs only within the scope of t

Re: [SQLObject] Re: [Sqlalchemy-users] SQLObject and SQLAlchemy

2006-03-22 Thread Ian Bicking
Jonathan Ellis wrote: I've been trying to keep these things extracted from SQLObject2 in the form of SQL-API ( http://svn.sqlobject.org/sqlapi/trunk). I would certainly be interested in reuse on that level, and I'm very open to suggestions and changes, or whatever. It's intended

Re: [SQLObject] Close a Connection

2006-03-22 Thread ray
Quoting Oleg Broytmann <[EMAIL PROTECTED]>: On Tue, Mar 21, 2006 at 10:32:20PM -0600, [EMAIL PROTECTED] wrote: # close connection connection.close() sqlhub.processConnection = connection # is this required? # do it all again connection_string='sqlite:/' + filename.replace(':', '|') connection

[SQLObject] updating and adding Class definitions

2006-03-22 Thread Lutz Steinborn
Hello, I'm using SQLObject and I really like it. I've defined some Classes for a company project ans used it for a while. No after some time things have changed and I have to alter and add some Classes. Whats the best way to do this ? Do I have to create new attributes and tables by hand ? Wha