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