mysql打不开
来源:3-8 .管理员-登录日志-操作日志数据模型设计
飞翔de胖子
2018-04-27
遇到这个问题怎么解决呀
mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user
写回答
1回答
-
慕斯6438358
2018-05-18
同学确认你的密码
from flask_sqlalchemy import SQLAlchemy
import pymysql
app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "pymysql://用户名:密码@127.0.0.1:3306/moive"
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = True
db = SQLAlchemy(app)00
相似问题