On Mon, May 11, 2009 at 11:32 AM, NoviceSortOf <dljonsson2...@gmail.com>wrote:

>
>
> An observation I've made it that django does update the related
> sequence_id table of the table but does not add a row to the table.
>

How are you deciding it's not working?  Are you seeing errors?  Does the
object have a pk assigned after you call save()?  If yes, have you tried
adding code after the save() to retrieve the object by pk? Are you perhaps
querying for the save() working using a transaction that is isolated
(perhaps using a repeatable-read level of isolation) from the update
transaction and therefore doesn't see the other transaction's updates?

This is very basic fundamental function, it is unlikely to be badly broken.
It's far more likely that what you are doing to check that it is working is
what is broken.

Karen

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