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

在 Python代码中操作mysql数据

时间:2018-01-13 21:00:20      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:数据   utf8   nts   删除   更新   local   ring   password   连接   

# 创建Connection连接
conn = connect(host=‘localhost‘, port=3306, user=‘root‘, password=‘mysql‘, database=‘python1‘, charset=‘utf8‘)
# 得Cursor对象
cs = conn.cursor()
# 更新
# sql = ‘update students set name="name" where id=1‘
# 删除
# sql = ‘delete from students where id=1‘
# 执行select语句,并返回受影响的行数:查询一条学生数据
sql = ‘select id,name from students where id = 7‘
# sql = ‘SELECT id,name FROM students WHERE id = 7‘
count=cs.execute(sql)
# 打印受影响的行数
print(count)

在 Python代码中操作mysql数据

标签:数据   utf8   nts   删除   更新   local   ring   password   连接   

原文地址:https://www.cnblogs.com/leedw/p/8280034.html

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