python操作mysql代码总结
安装模块 windows:pip install pymysql ubuntu:sudo pip3 install pymysql python操作mysql步骤 import pymysql (1) 链接mysql数据库 db = pymysql.connect(主机名,用户名,密码,数据库名) (2) 设置字符编码 db.set_charset(‘utf8’) (3) 创建游标对象 cursor = db.cursor() (4) 准备sql语句 sql = ‘...’ (5) 执行sql语句 cursor.execute(sql) (6) 获取所有结果集 cursor.fetchall()
用户评论