import pymysql
pymysql.install_as_MySQLdb()
db = pymysql.connect(host=“127.0.0.1”,user=“testuser”,password=“test123”,db=“world”,port=3306 )
cursor=db.cursor()
cursor.execute("select * from city ")
data=cursor.fetchall()
db.close()
第一阶段:python3 连接本地mysql
最新推荐文章于 2024-09-02 16:56:06 发布