$ ./oui3/manage.py shell
Python 2.4.3 (#1, Jun 13 2006, 16:41:45)
[GCC 4.0.2 20051125 (Red Hat 4.0.2-8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from oui3.mon.models import User
>>> User.objects.all()
[<User: [EMAIL PROTECTED]>, <User: root>, <User: test-wsx>]

(then, in another shell:)

mysql> update user set username='test-wsy' where username='test-wsx';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

(back in the first shell:)

>>> User.objects.all()
[<User: [EMAIL PROTECTED]>, <User: root>, <User: test-wsx>]

and yes, mysql auto-commit is on.
i'm using the multi-db branch.


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

Reply via email to