I suppose that depends on the behavior of the DB-API interface, in this case
I guess that's psycopg.

Anyway, I'm certainly not sure if an MVCC snapshot that's causing your
problem, but it does seem like at least a possibility. The certain way is to
check the update status inside the same transaction that did the update --
in general you can't count on transaction "B" to see transaction "A" changes
unless B starts after A commits. Whether an open pyscopg cursor implies an
open transaction -- beats me.

Rick

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to