Seth Kaïne wrote: > I want to have some more, please. > When I do that: > > >>>> python manage.py shell >>>> > > >>>> from httpbackend.models import Unit >>>> Unit.objects.all() >>>> > [<Unit: Toto (g.com)>, <Unit: Pingo (s.com)>, <Unit: Titi (p.com)>, > <Unit: Jason (f.com)>] > >>>> u3 = Unit.objects.filter(id=3)[0] >>>> u3.status >>>> > <UnitStatus: OFFLINE> > ------- I change the status for an ONLINE statement with phpmyadmin in > my Table Unit to test if django orm takes modifications to the objet > from the DB ------ > >>>> u3.status >>>> > <UnitStatus: OFFLINE> > ------- no, nothing ------- > > I want to know why? > > And I want to solve this, please! > thank you, come again! >
At the very least you would need to read the database again, as there is nothing that would "magically" make the already-in-memory u3 object update itself when the database content changes. regards Steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---