我用pip install mysql-connector-python安装了MySQL。但是在Python中连接时,我不知道该使用什么密码。mysqldb=mysql.connector.connect(host=“localhost”,user="",password="",database=””)
pip install mysql-connector-python
vojdkbi01#
不要使用密码,只需使用主机。https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html(Btw.这只是一个连接包,你还需要MySql服务器-https://pypi.org/project/MySQL-python/)
1条答案
按热度按时间vojdkbi01#
不要使用密码,只需使用主机。https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
(Btw.这只是一个连接包,你还需要MySql服务器-https://pypi.org/project/MySQL-python/)