Python之路第十九篇--Python操作MySQL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之路第十九篇--Python操作MySQL相关的知识,希望对你有一定的参考价值。

本篇对于Python操作MySQL主要使用两种方式:

  • 原生模块 pymsql

  • ORM框架 SQLAchemy

pymsql

pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb几乎相同。

下载安装

pip3 install pymysql

使用操作

1、执行SQL

# 创建连接
conn = pymysql.connect(host=‘127.0.0.1‘, port=3306, user=‘root‘, passwd=‘123456‘, db=‘db1‘)
# 创建游标
cursor = conn.cursor()

# 执行SQL,并返回受影响行数
effect_row = cursor.execute("update hosts set host = ‘1.1.1.2‘ where nid > %s", (1,))
  
# 执行SQL,并返回受影响行数
effect_row = cursor.executemany("insert into hosts(host,color_id)values(%s,%s)", [("1.1.1.11",1),("1.1.1.11",2)])

# 提交,不然无法保存新建或者修改的数据
conn.commit()
  
# 关闭游标
cursor.close()
# 关闭连接
conn.close()

增,删,改需要执行 conn.commit()

2、获取新创建数据自增ID

import pymysql
  
conn = pymysql.connect(host=‘127.0.0.1‘, port=3306, user=‘root‘, passwd=‘123‘, db=‘t1‘)
cursor = conn.cursor()
cursor.executemany("insert into hosts(host,color_id)values(%s,%s)", [("1.1.1.11",1),("1.1.1.11",2)])
conn.commit()
cursor.close()
conn.close()
  
# 获取最新自增ID  => 如果插入多条,只能拿到最后一条id
new_id = cursor.lastrowid

3、获取查询数据

import pymysql
  
conn = pymysql.connect(host=‘127.0.0.1‘, port=3306, user=‘root‘, passwd=‘123‘, db=‘t1‘)
cursor = conn.cursor()
cursor.execute("select * from hosts")
  
# 获取第一行数据
row_1 = cursor.fetchone()
# => 再次执行:cursor.fetchone() 获得下一条数据,没有时为None

# 获取前n行数据
# row_2 = cursor.fetchmany(n)
# ==> 执行了n次fetchone()

# 获取所有数据
# row_3 = cursor.fetchall()
  
conn.commit()
cursor.close()
conn.close()

注:在fetch数据时按照顺序进行,可以使用cursor.scroll(num,mode)来移动游标位置,如:

  • cursor.scroll(-1,mode=‘relative‘)  # 相对当前位置移动

  • cursor.scroll(2,mode=‘absolute‘) # 相对绝对位置移动

4、fetch数据类型

  关于默认获取的数据是元祖类型,如果想要或者字典类型的数据,即:

import pymysql
  
conn = pymysql.connect(host=‘127.0.0.1‘, port=3306, user=‘root‘, passwd=‘123456‘, db=‘t1‘)
  
# 游标设置为字典类型
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)

row = cursor.execute("select * from user")
  
result = cursor.fetchone()
print(result)

conn.commit()
cursor.close()
conn.close()

  

 

以上是关于Python之路第十九篇--Python操作MySQL的主要内容,如果未能解决你的问题,请参考以下文章

Python之路第十九篇:爬虫

Python之路第十九篇:爬虫

Python开发第十九篇:Python操作MySQL

Python开发第十九篇:Python操作MySQL

python学习[第十九篇] 模块

python全栈开发基础第十九篇进程