我坚持用django设置mysql!
我安装了python 2.7和django,我安装了python-mysql
,我安装了xampp的mysql。按照我的字符串连接:
'default': {
'ENGINE': 'mysql',
'NAME': 'teste',
'USER': 'root',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '',
}
当我在引擎上放'django.db.backends.mysql'时我可以运行服务器但是当我使用'syncdb'时我得到一个错误'无法连接mysql'。 当我把'mysql'放在引擎上时,我得到一个错误'找不到mysql模块'或类似的东西。
Django没有连接mySql,我错过了什么?
我可以使用root用户连接到navicat上的数据库而没有密码所以我认为这也适用于django。 Mysql安装在c:\ xampp \ mysql上,运行正常。