Python 操作数据库
Posted 鱼蛋酱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 操作数据库相关的知识,希望对你有一定的参考价值。
1、安装pymysql模块
pip install pymysql
2、代码如下
import pymysql # 1、连上数据库 账号、密码 ip 端口号 数据库 # 2、建立游标 # 3、执行sql # 4、获取结果 # 5、关闭游标 # 6、连接关闭 coon = pymysql.connect( host=‘xxx.xxx.xxx.xxx‘,user=‘xxx‘,passwd=‘123456‘, port=3306,db=‘xxx‘,charset=‘utf8‘ #port必须写int类型, #charset这里必须写utf8 ) cur = coon.cursor() # 建立游标 # cur.execute(‘select * from stu;‘) # 执行sql语句 cur.execute(‘insert into stu (id,name,sex) VALUE (1,"小米","女");‘) # delete update insert coon.commit() # 必须得coomit res = cur.fetchall() # 获取所有返回的结果 print(res) cur.close() # 关闭游标 coon.close() # 关闭连接
以上是关于Python 操作数据库的主要内容,如果未能解决你的问题,请参考以下文章
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段