python 操作MySQL数据库

2023年 8月 12日 51.2k 0

1.connect

def conn(ip,user,passWord,database):
con = mdb.connect(ip,user,password,database)
cur = con.cursor()
return cur

2.selectSELECT ip,env from hosts ORDER BY 1, 2for row in cur.fetchall():print row('172.x.x.x', 'prod')

('PROBLEM: 172.x.x.x Table open cache too small\r\nservice_name: Table open cache too small\r\nService_status: PROBLEM\r\nService_severity: InfORMation\r\nItem values:\r\nCheck_service_ip:172.x.x.x\r\nCheck_service_name:Mysql.status[Open_tables]\r\nCheck_service_vlaue:4059\r\nCheck_service_time:2018.03.01 09:54:43',)

3.update

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论