我的电脑上同时安装了 Tornado 和 XAMPP。传统上,我使用 PhpMyAdmin 来完成我所有的 MySQL 工作。但是,我也想用 Tornado 来完成这项工作。当我尝试通过 Tornado 连接到 MySQL 时,出现以下错误:
Traceback (most recent call last):
File "__server.py", line 20, in <module>
class Application(tornado.web.Application):
File "__server.py", line 40, in Application
password=options.mysql_password
File "/Library/Python/2.7/site-packages/tornado-2.4.1-py2.7.egg/tornado/database.py", line 59, in __init__
args = dict(conv=CONVERSIONS, use_unicode=True, charset="utf8",
NameError: global name 'CONVERSIONS' is not defined
这个错误让我相信 Tornado 认为我的计算机上没有安装 MySQL。
以下是相关的 Tornado 代码,__server.py
如果它有什么不同的话:
import tornado.database
import tornado.options
import unicodedata
from tornado.options import define, options
define("port", default=8888, help="run on the given port", type=int)
define("mysql_host", default="localhost", help="database host") #127.0.0.1:3306 – this was the default (should I change it? I didn't get this far in the setup process to know)
define("mysql_database", default="Godzillian1", help="database name")
define("mysql_user", default="root", help="database user")
define("mysql_password", default="", help="database password")
class Application(tornado.web.Application):
self.db = tornado.database.Connection(
host=options.mysql_host,
database=options.mysql_database,
user=options.mysql_user,
password=options.mysql_password
)
因此我的问题是:我是否需要更改 Tornado 配置文件中的某些内容或其他内容?目前任何 MySQL 文件都位于我的 XAMPP 文件夹中。这对我来说似乎有问题,但在我移动所有东西之前,我想检查一下。或者,我是否需要完全“重新下载”MySql?或者它与龙卷风__server.py
本身有关。(注意:为此,我删除了密码并制作了username=root
,试图找出解决方案。)
编辑:我已经成功安装了 MySQL5(64 位)和 MySQL-Python,但我仍然收到同样的错误NameError: global name 'CONVERSATIONS' is not defined
。我应该安装 32 位版本的 MySQL 以使其与 MySQL-Python 兼容吗?(我认为 Lion 需要 64 位 MySQL ......但我现在显然一无所知)。这很令人困惑!
非常感谢的想法。