使用pymysql连接数据库报错__init__() takes 1 positional argument but 5 positional arguments (and 1 keyword-

使用pymysql连接数据库报错__init__() takes 1 positional argument but 5 positional arguments (and 1 keyword-only argument) were given

核心问题就是py3.8中使用使用数据库连接的时候前面要有指定的连接名称
很多教材上面连接就是直接的写

db = pymysql.connect("localhost", "root", "196811", "db_student",charset="utf8")
    return db # 返回连接对象

这个方法是直接会导致报错我们使用下面固定参数字段的方法

try:
    db = pymysql.connect(host="localhost", user="root", password="196811", database="db_student",charset="utf8")

    print("数据库连接成功")
except pymysql.Error as e:
    print("数据库连接失败:"+str(e))

到此就连接成功了!

你可能感兴趣的:(python,数据库,mysql,jdbc)