Hi All - I'm having trouble going from using a mysql database to an
oracle database. The MySQL db settings work fine and I can validate &
syncdb my tables into the database. However, when I change my
settings.py to point to an oracle database then I get the following
error (I have cx_Oracle installed)...

python manage.py validate
Traceback (most recent call last):
  File "manage.py", line 11, in ?
    execute_manager(settings)
  File "/usr/local/django-versions/Django-1.0/django/core/management/
__init__.py", line 340, in execute_manager
    utility.execute()
  File "/usr/local/django-versions/Django-1.0/django/core/management/
__init__.py", line 295, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/local/django-versions/Django-1.0/django/core/management/
base.py", line 77, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "/usr/local/django-versions/Django-1.0/django/core/management/
base.py", line 87, in execute
    translation.activate('en-us')
  File "/usr/local/django-versions/Django-1.0/django/utils/translation/
__init__.py", line 73, in activate
    return real_activate(language)
  File "/usr/local/django-versions/Django-1.0/django/utils/translation/
__init__.py", line 43, in delayed_loader
    return g['real_%s' % caller](*args, **kwargs)
  File "/usr/local/django-versions/Django-1.0/django/utils/translation/
trans_real.py", line 209, in activate
    _active[currentThread()] = translation(language)
  File "/usr/local/django-versions/Django-1.0/django/utils/translation/
trans_real.py", line 198, in translation
    default_translation = _fetch(settings.LANGUAGE_CODE)
  File "/usr/local/django-versions/Django-1.0/django/utils/translation/
trans_real.py", line 181, in _fetch
    app = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]),
appname[p+1:])
  File "/usr/local/django-versions/Django-1.0/django/contrib/admin/
__init__.py", line 1, in ?
    from django.contrib.admin.options import ModelAdmin, HORIZONTAL,
VERTICAL
  File "/usr/local/django-versions/Django-1.0/django/contrib/admin/
options.py", line 5, in ?
    from django.contrib.contenttypes.models import ContentType
  File "/usr/local/django-versions/Django-1.0/django/contrib/
contenttypes/models.py", line 1, in ?
    from django.db import models
  File "/usr/local/django-versions/Django-1.0/django/db/__init__.py",
line 16, in ?
    backend = __import__('%s%s.base' % (_import_path,
settings.DATABASE_ENGINE), {}, {}, [''])
  File "/usr/local/django-versions/Django-1.0/django/db/backends/
oracle/base.py", line 23, in ?
    from django.db.backends.oracle.introspection import
DatabaseIntrospection
  File "/usr/local/django-versions/Django-1.0/django/db/backends/
oracle/introspection.py", line 7, in ?
    class DatabaseIntrospection(BaseDatabaseIntrospection):
  File "/usr/local/django-versions/Django-1.0/django/db/backends/
oracle/introspection.py", line 9, in DatabaseIntrospection
    data_types_reverse = {
AttributeError: 'module' object has no attribute 'NCLOB'

Has anyone seen this before - not much on the web.

Thanks,

Martin

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