Mysql
 sql >> Datenbank >  >> RDS >> Mysql

OperationalError:(1045, Zugriff verweigert für Benutzer 'rajendra'@'localhost' (mit Passwort:NEIN))

Sie sollten MYSQL_HOST verwenden , MYSQL_USER , MYSQL_PASSWORD und MYSQL_DB Konfigurationsanweisungen:http://flask-mysqldb.readthedocs.org/en/latest /#Konfiguration

app.config['MYSQL_USER'] = 'root'
app.config['MYSQL_PASSWORD'] = '1234'
app.config['MYSQL_DB'] = 'EmpData'
app.config['MYSQL_HOST'] = 'localhost'