标签:roo 简单的 ror mysql erro 数据 mysql数据库 连接 参数
1、
https://blog.csdn.net/msq16021/article/details/113617327
一开始都是这么简单的写,并无报错
db = pymysql.connect("localhost", "root", "196811", "db_student",charset="utf8")
return db # 返回连接对象
迁移服务后,可能是因为mysql版本或者pymysql的版本有变化,导致不能再这么简单的写了,传参规则变得规范了
主要就是将传参的参数名加上
db = pymysql.connect(host="localhost", user="root", password="196811", database="db_student",charset="utf8mb4")
标签:roo 简单的 ror mysql erro 数据 mysql数据库 连接 参数
原文地址:https://www.cnblogs.com/yaok430/p/14587140.html