More info ...
I wrote a little program to execute the query directly via psycopg and
it works fine. Even if I take this test code and put it in the running
django code, it continues to work fine.
The SQL is an UPDATE command, like
UPDATE
content
SET
"voteTotal" = "voteTotal" + 1,
"voteCount" = "voteCount" + 1
WHERE
id = 25
It seems like there something about the CursorWrapper or the
DatabaseWrapper that is preventing the execute() from working ...
anyone?
-S
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---