1

使用Jython时如何设置我的 django 应用程序以连接到 mysql ?

设置.py

DATABASES = {
    'default': {
        'ENGINE': ''django.db.backends.mysql', # should this be: com.ziclix.python.sql?
    }
}
4

1 回答 1

3

根据Django 文档django-jython 文档,您可以安装django-jython,然后'doj.backends.zxjdbc.mysql'用作数据库后端。

此外,请记住将 JDBC 驱动程序添加到您的类路径中:

jython -J-classpath path/to/driver.jar manage.py runserver

或者

export CLASSPATH="$CLASSPATH:/path/to/driver.jar"
于 2012-12-05T15:39:35.420 回答