Subject Re: [firebird-python] sqlalchemy ticket 2125
Author werner
On 07/13/2011 04:19 PM, werner wrote:
 

It would be interesting to hear Michael's possition on this test failer,
but for some reasons our last two posts (and probably this one) don't
show on the SA-devel list.

Sorry for the noise on the SA-devel list, as I am new member my posts were moderated.

In my code I should probably have two connections as I need two cursors, no?

If I change it from:

...
    conn = engine.connect()
       
    dbItemsMultiLang = conn.execute(selML)
...

to:

...
    conn = engine.connect()
    conn2 = engine.connect()
       
    dbItemsMultiLang = conn2.execute(selML)
...

It works fine, but obviously we still need to find the correct solution for the test failure.

Werner