烧瓶sqlalchemy:Mysql连接

时间:2018-07-20 11:20:45

标签: python mysql sqlalchemy

我有以下连接代码:

app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql:/uBrands:uBrands2018B@127.0.0.1/ubrands'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['SECRET_KEY'] = 'some-secret-string'

日志显示:

  

OperationalError:(_mysql_exceptions.OperationalError)(1045,“访问   用户'root'@'localhost'被拒绝(使用密码:是)“)(背景   出现此错误的地方:http://sqlalche.me/e/e3q8

我已经检查了用户名密码,数据库名称,一切都很好,日志也显示了Access denied for user 'root'@'localhost',但用户名不是root及其uBrands,为什么它是root @loclhost

注意:uBrands用户具有对所有数据库的完全访问权限权限

可能是什么问题?

0 个答案:

没有答案