码迷,mamicode.com
首页 > 数据库 > 详细

Python 操作数据库

时间:2018-05-28 22:42:16      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:数据库   语句   .exe   upd   har   mys   .com   sele   模块   

 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 操作数据库

标签:数据库   语句   .exe   upd   har   mys   .com   sele   模块   

原文地址:https://www.cnblogs.com/jyd1993/p/9075955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!