On May 23, 1:59 am, "R. Gorman" <r.m.gor...@gmail.com> wrote:
> You can control database connections and transactions using
> transaction management:
>
> http://docs.djangoproject.com/en/dev/topics/db/transactions/

This isn't about transactions, it's about the how the connection
itself can not be properly shared.

When you do stuff like cursors and transactions, they all operate
on the connection, which means one process calls fetchall()
on its cursor, getting everything the connection has available,
and when the other process wants fetchall() it has suddenly become
empty.

It'd be real sweet if Django could give me new connections with
a call :)

--
mjt

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to