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
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
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
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
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