[sqlalchemy] Re: Execute statement sends ROLLBACK commands to database

2009-02-19 Thread Jeff Cook
More specifically, it seems to be erroring out with this: DEBUG: SET TRANSACTION ISOLATION LEVEL must be called before any query before the ROLLBACK happens. On Thu, Feb 19, 2009 at 4:42 PM, Jeff Cook cookieca...@gmail.com wrote: Using the following code with Pylons, SQLAlchemy and SQLSoup:

[sqlalchemy] Re: Execute statement sends ROLLBACK commands to database

2009-02-19 Thread Michael Bayer
On Feb 19, 2009, at 6:42 PM, Jeff Cook wrote: Using the following code with Pylons, SQLAlchemy and SQLSoup: def add(self): ians = text ( SELECT * FROM insert_clinic(:name, :addr, :city, :state, :zip, :taxid, :note, :website, :addedby) ) conn = meta.soup.engine.connect()