作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 geodjango 的新手。我正在使用 django-1.4.5 和我的数据库设置,
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2", # Add "postgresql_psycopg2", "postgresql", "mysql", "sqlite3" or "oracle".
"NAME": "mydb", # Or path to database file if using sqlite3.
"USER": "postgres", # Not used with sqlite3.
"PASSWORD": "test", # Not used with sqlite3.
"HOST": "localhost", # Set to empty string for localhost. Not used with sqlite3.
"PORT": "", # Set to empty string for default. Not used with sqlite3.
}
}
我收到错误 'module' object has no attribute 'GeoSQLCompiler'
请解决我的问题。
最佳答案
替换:
'ENGINE': 'django.db.backends.postgresql_psycopg2'
与
'ENGINE': 'django.contrib.gis.db.backends.postgis'
关于python - “模块”对象没有属性 'GeoSQLCompiler',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19226025/
我是 geodjango 的新手。我正在使用 django-1.4.5 和我的数据库设置, DATABASES = { "default": { "ENGINE": "djan
我是一名优秀的程序员,十分优秀!