> no error occured.
>
> I also recognised this error only occurs on one of my two machines.
> the productive one of course! ;)
> productive:
> ubuntu 6.06, mysql 5.0.22, Python 2.4.3
> develop:
> ubuntu 7.10, mysql 5.0.45, Python 2.5.1
> (uses a mysqldump of the productive)
Try to add debug code before this statement:

"/usr/lib/python2.4/site-packages/django/db/models/query.py",
line 189, in iterator
    cursor.execute("SELECT " + (self._distinct and "DISTINCT " or "")
+ ",".join(select) + sql, params)

something like print and, if you want, pdb:

try:
    print "SELECT " + (self._distinct and "DISTINCT " or "") +
",".join(select) + sql, params
    cursor.execute("SELECT " + (self._distinct and "DISTINCT " or "")
+ ",".join(select) + sql, params)
except Exception, err:
    import pdb;pdb.set_trace()

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