MySql教程

Python连接Mysql测试

本文主要是介绍Python连接Mysql测试,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import pymysql

db = pymysql.connect(host="rm-2zei6e64c1k486wp1.mysql.rds.aliyuncs.com", port=3306, user="zhuhaoran", passwd="a%fk&^km%HbZu7O$", db="uat_orderdb", charset='utf8')
cursor = db.cursor() #使用cursor方法创建一个游标
cur.execute("show tables;")
table_number = cur.fetchall()
print(table_number)
cursor.close()
db.close()
这篇关于Python连接Mysql测试的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!