我正在尝试使用python连接到mysql,但出现错误

时间:2019-06-20 12:18:48

标签: python mysql database compiler-errors pycharm

我尝试通过在Pycharm上使用python连接到数据库Mysql,但出现错误, 我尝试了mysql.connector,MySQLdb,pymysql,但失败了。 我正在使用Mac Mojave 10.14版,MAMP服务器,pycham。

这是我使用的代码:

import mysql.connector

mydb = mysql.connector.connect(
    passwd="root",
    db="newm",
    host="localhost",
    user="root"
    )

print(mydb)

我收到此错误

enter image description here

0 个答案:

没有答案