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()
相关文章
- 05-15一个喜剧简单的python程序上的IRC连接错误
- 05-15【Python实战】使用Python连接Teradata数据库???未完成
- 05-15python – 如何自定义机器人框架测试报告
- 05-15python – 有没有办法在Robot Framework的ssh连接中使用telnet?
- 05-15Python3+RobotFramework自动化测试七:SeleniumLibrary web测试-百度搜索和邮箱登录
- 05-15测试URL连接是否可用
- 05-15【转载】Python测试框架doctest
- 05-15Python测试框架unittest
- 05-15吴裕雄--天生自然python学习笔记:python 建立 Firebase 数据库连接
- 05-15踩坑学习python自动化测试第二天!