mysql 数据库连接使用utf8

连接数据库时,出现以下提示,不能使用【utf-8】

后来发现是不能使用【utf-8】 而应该是【utf8】

对应的版本 python 2.7,mysql-5.7.21-winx64

mysql://root:[email protected]:3306/flaskdb?charset=utf8

sqlalchemy.exc.OperationalError: (_mysql_exceptions.OperationalError) (2019, "Can't initialize character set utf-8 (path: C:\\mysql\\\\share\\charsets\\)") (Background on this error at: http://sqlalche.me/e/e3q8)

你可能感兴趣的:(Python,Mysql)