cx_oracleがインストールされ、inspectdbが実行されました。出力がないようですか?誰かが助けることができますか? Oracleでinspectdbを使用することで既知の問題はありますか?Oracleデータベースを使用したDjango inspectdbの問題
以下はコマンドとsettings.pyです。それは私の作品
python manage.py inspectdb --database xxx_db
# 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
settings.py
DATABASES = {
'xxx_db': {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'abc',
'USER': 'abc_read',
'PASSWORD': 'abc_read',
'HOST': 'apps.domain.com',
'PORT': 'xxxx'
},
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'aaaa',
'USER': 'aaaa',
'PASSWORD': 'xxxx',
'HOST': '/tmp/mysql.sock',
'PORT': ''
}
}
oracle' 'のどのバージョンと'cx_oracle'はあなたを使っていますか? –
Reiner - cx_Oracle-5.0.3およびOracle 10.2.0.4.0 – Kevin