[Python_6] Python 配置 MySQL 访问
Posted 山间一棵松
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python_6] Python 配置 MySQL 访问相关的知识,希望对你有一定的参考价值。
0. 说明
Python 访问 MySQL 数据库,需要安装 MySQL 的 Python 插件。
1. 安装 MySQL 插件
pip install PyMySQL
2. 编写代码
# -*-coding:utf-8-*- import pymysql """ Python 访问 MySQL 数据库 """ """ 创建表的命令 create table t1( id int, name varchar(20), age int ); """ # 连接到数据库 ,注意使用127.0.0.1 conn = pymysql.Connect("127.0.0.1", "root", "123456", "python") # 得到游标 cur = conn.cursor() # 执行语句 # cur.execute("select version()") # 提取第一条记录 # result = cur.fetchone() # print(result) # 插入记录 # cur.execute("insert into t1(id ,name ,age) values(2 ,‘amy‘ , 23)") # 查询 t1表 所有记录 print("=================") cur.execute("select * from t1") results_list = cur.fetchall() for r in results_list: id = r[0] name = r[1] age = r[2] print("%d/%s/%d " % (id, name, age), ) # 删除记录 # cur.execute("delete from t1 where id >= 1000") conn.commit() cur.close()
以上是关于[Python_6] Python 配置 MySQL 访问的主要内容,如果未能解决你的问题,请参考以下文章
18 12 07 MySQL ???python ?????????