pretty basic database i created using the "polls" tutorial, and now
trying to test inspectdb (which i need to run against a legacy db).
(fwiw, i tried creating a test dir, and didn't help)

thanks,

bash-3.2$ python manage.py inspectdb
# This is an auto-generated Django model module.
# You'll have to do the following manually to clean this up:
#     * Rearrange models' order
#     * Make sure each model has one field with primary_key=True
# Feel free to rename the models, but don't rename db_table values or
field names.
#
# Also note: You'll have to insert the output of 'django-admin.py
sqlcustom [appname]'
# into your database.

from django.db import models

class AuthGroup(models.Model):
Traceback (most recent call last):
  File "manage.py", line 11, in <module>
    execute_manager(settings)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/__init__.py", line 340,
in execute_manager
    utility.execute()
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/__init__.py", line 295,
in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/base.py", line 77, in
run_from_argv
    self.execute(*args, **options.__dict__)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/base.py", line 96, in
execute
    output = self.handle(*args, **options)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/base.py", line 178, in
handle
    return self.handle_noargs(**options)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/commands/inspectdb.py",
line 10, in handle_noargs
    for line in self.handle_inspection():
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/management/commands/inspectdb.py",
line 36, in handle_inspection
    relations = connection.introspection.get_relations(cursor,
table_name)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/db/backends/mysql/introspection.py",
line 64, in get_relations
    AND referenced_column_name IS NOT NULL""", [table_name])
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/db/backends/util.py", line 19, in
execute
    return self.cursor.execute(sql, params)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/db/backends/mysql/base.py", line 83, in
execute
    return self.cursor.execute(query, args)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/MySQL_python-1.2.2-py2.5-macosx-10.3-i386.egg/
MySQLdb/cursors.py", line 168, in execute
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/MySQL_python-1.2.2-py2.5-macosx-10.3-i386.egg/
MySQLdb/cursors.py", line 82, in _warning_check
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/warnings.py", line 62, in warn
    globals)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/warnings.py", line 102, in warn_explicit
    raise message
_mysql_exceptions.Warning: Can't read dir of './test/' (errno: 13)
--~--~---------~--~----~------------~-------~--~----~
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