在 Python代码中操作mysql数据

Posted leedw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 Python代码中操作mysql数据相关的知识,希望对你有一定的参考价值。

# 创建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数据的主要内容,如果未能解决你的问题,请参考以下文章

linux中怎么查看mysql数据库版本

如何在片段中填充列表视图?

Python - 循环加速 - 大型数据集

学习笔记:python3,代码片段(2017)

通过Python代码操作MySQL:

MySQL客户端不需要commit代码需要commit原因分析