[sqlalchemy] Re: Issue with cursor usage in zxjdbc dialect for Oracle

2010-03-09 Thread Tahir Butt
Sorry the zxjdbc test should read: cursor = db.cursor(1) cursor.execute(query) for r in cursor: pass -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to sqlalch...@googlegroups.com. To unsubscribe from this

[sqlalchemy] Re: Issue with cursor usage in zxjdbc dialect for Oracle

2010-03-09 Thread Tahir Butt
A final comment on this issue. oracle.jdbc.driver.OracleDriver is considerably faster than zxjdbc in my case where I'm reading many rows. On Mar 9, 1:51 pm, Tahir Butt tahir.b...@gmail.com wrote: Sorry the zxjdbc test should read: cursor = db.cursor(1) cursor.execute(query) for r in cursor:

Re: [sqlalchemy] Re: Issue with cursor usage in zxjdbc dialect for Oracle

2010-03-09 Thread Michael Bayer
Tahir Butt wrote: A final comment on this issue. oracle.jdbc.driver.OracleDriver is considerably faster than zxjdbc in my case where I'm reading many rows. On Mar 9, 1:51 pm, Tahir Butt tahir.b...@gmail.com wrote: Sorry the zxjdbc test should read: cursor = db.cursor(1)