Re: [Twisted-Python] cx_Oracle, Twisted - rollback failed

2009-04-30 Thread Steve Lewis
> Is there some way it can determine that the connection has been lost aside > from trying the rollback (and is compatible with other DB-API 2.0 modules)? > > Jean-Paul Oops, I actually did see my message going through now. Sorry for the duplicate. To answer your question, I was under the impres

[Twisted-Python] cx_Oracle, Twisted - rollback failed

2009-04-30 Thread Steve Lewis
(If anyone gets this twice, apology in advance. I think I jumped the gun in sending the email before I got my acknowledge welcome email for the list.) It looks like the latest version 8.2 tries to rollback without seeing if the connection is even open or not: def rollback(self): if

[Twisted-Python] cx_Oracle, Twisted - rollback failed

2009-04-29 Thread Steve Lewis
It looks like the latest version 8.2 tries to rollback without seeing if the connection is even open or not: def rollback(self): if not self._pool.reconnect: self._connection.rollback() return try: self._connection.rollback() cu