for some more info, i debugged it down to this line:

  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/db/backends/mysql/introspection.py",
line 70, in get_relations
    AND referenced_column_name IS NOT NULL""", [table_name])

it seems the table_name is not being enclosed in ' ' ...so the sql is
incorrect in this line:

  cursor.execute("""
                SELECT column_name, referenced_table_name,
referenced_column_name
                FROM information_schema.key_column_usage
                WHERE table_name = %s
                    AND table_schema = DATABASE()
                    AND referenced_table_name IS NOT NULL
                    AND referenced_column_name IS NOT NULL""",
[table_name])

adding a '%s' everything works.
--~--~---------~--~----~------------~-------~--~----~
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