我用xampp运行MySQL,写了一行python代码,并收到错误信息:
import MySQLdb
db=MySQLdb.connect(host="localhost', port=3306, user="root", passwd="")
_mysql_exceptions.OperationalError: (1130, "Host 'bedroom.lan' is not allowed to connect to this MySQL server")
我有什么方法可以使用python 2.7来访问XAMPP MySQL数据库吗?如果没有,我是否需要在python27目录中安装MySQL服务器?
答案 0 :(得分:0)
Fush!
你试试吗?
import MySQLdb
db = MySQLdb.connect("localhost","root","","bedroom" )
cursor = db.cursor()
我在Python 2.7中测试过并且有效。