2

我下载了文件夹并放入C:\Python27\Lib\site-packages\django\contrib\gis\db\backends\firebird,但是当我使用它时,给我一个

error:django.core.exceptions.ImproperlyConfigured: 'firebird' isn't an available database backend.
Try using `django.db.backends.XXX, where XXX is one of:
    'dummy', 'mysql', 'oracle', 'postgresql_psycopg2', 'sqlite3'
Error was: No module named firebird.base

我已经将路径写入PYTHONPATH.

我怎样才能让它工作?

4

2 回答 2

4

使用 Django 1.3(或更高版本)并按照django-firebird页面上的说明进行操作。

Django 1.4 使用github 上的 django-firebird 驱动程序

在您的settings.py文件中,使用与此类似的内容...

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'testdb',
        'USER': 'testdb_user',
        'PASSWORD': 'testdbpassw',
        'HOST': '',
        'PORT': '',
    },
    'fb': {
        'ENGINE': 'firebird',
        'NAME': '/home/idle/mydb.gdb',
        'USER': 'SYSDBA',
        'PASSWORD': 'passw',
        'HOST': '127.0.0.1',
        'PORT': '3050',
        'OPTIONS': {'charset':'WIN1251', 'dialect':1} ,
    }
}
于 2012-08-13T08:38:33.003 回答
0

我已经更新了 django 1.4 和 ubuntu 的说明https://github.com/mariuz/django-firebird/blob/master/README.md

稍后我将清理自述文件并将其与主分支合并

在您的情况下,您需要将驱动程序中的 firebird 目录放在两个目录中

C:\Python27\Lib\site-packages\django‌​\contrib\gis\db\backends and in C:\Python27\Lib\site-packages

Seems that later it needs the compiler and it loads it from the firebird module Also you will need kinterbasdb http://www.ibphoenix.com/download/connectivity/python

于 2012-08-15T16:46:49.590 回答