Hi,
I've a problem, aparently, with refresh data in a user concurrent
system using orm lib.
For instance, an user do a query request which return a objects list.

people = session.query(Person).filter_by().all()

and, I show this in my GUI (a gtk.treeview)

Now, another user, on your workstation change some values for a person
object.
When, the first user, re-query for get the new values, using

   people = session.query(Person).filter_by().all()

New values aren't returned.

How can refresh to get the new changed values?

Thanks in advance.

P.D.: I'am using sa 0.3.10



--~--~---------~--~----~------------~-------~--~----~
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