Thank you! 'set transaction isolation level read committed' had no effect, but 'set autocommit=1' appears to fix it.
I wondered if there was some more general way of doing this (I mean, besides passing in raw sql). Perhaps the set_autocommit() method in db.backends.creation? On Fri, Jan 28, 2011 at 6:51 PM, Karen Tracey <[email protected]> wrote: > On Fri, Jan 28, 2011 at 9:45 PM, Brian Craft <[email protected]> > wrote: >> >> Digging into the problem I'm having with a standalone django script, >> the problem seems to be that django doesn't see updates to the >> database unless it writes to the database. > > Sounds a lot like: > http://groups.google.com/group/django-users/browse_thread/thread/e25cec400598c06d/ > > Karen > -- > http://tracey.org/kmt/ > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > 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. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

