使用PyMySQL操作mysql数据库

适用环境

python版本 >=2.6或3.3

mysql版本>=4.1

安装

可以使用pip安装也可以手动下载安装。

使用pip安装,在命令行执行如下命令:

1

pip install PyMySQL

手动安装,请先下载。下载地址:https://github.com/PyMySQL/PyMySQL/tarball/pymysql-X.X

其中的X.X是版本(目前可以获取的最新版本是0.6.6)。

下载后解压压缩包。在命令行中进入解压后的目录,执行如下的指令:

1

python setup.py install

建议使用pip安装。

使用示例

连接数据库如下:

1

2

3

4

5

6

7

8

9

10

import pymysql.cursors

# Connect to the database

connection = pymysql.connect(host=‘127.0.0.1‘,

port=3306,

user=‘root‘,

password=‘zhyea.com‘,

db=‘employees‘,

charset=‘utf8mb4‘,

cursorclass=pymysql.cursors.DictCursor)

也可以使用字典进行连接参数的管理,我觉得这样子更优雅一些:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

import pymysql.cursors

config = {

‘host‘:‘127.0.0.1‘,

‘port‘:3306,

‘user‘:‘root‘,

‘password‘:‘zhyea.com‘,

‘db‘:‘employees‘,

‘charset‘:‘utf8mb4‘,

‘cursorclass‘:pymysql.cursors.DictCursor,

}

# Connect to the database

connection = pymysql.connect(**config)

插入数据:

执行sql语句前需要获取cursor,因为配置默认自动提交,故在执行sql语句后需要主动commit,最后不要忘记关闭连接:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

from datetime import date, datetime, timedelta

import pymysql.cursors

#连接配置信息

config = {

‘host‘:‘127.0.0.1‘,

‘port‘:3306,

‘user‘:‘root‘,

‘password‘:‘zhyea.com‘,

‘db‘:‘employees‘,

‘charset‘:‘utf8mb4‘,

‘cursorclass‘:pymysql.cursors.DictCursor,

}

# 创建连接

connection = pymysql.connect(**config)

# 获取明天的时间

tomorrow = datetime.now().date() + timedelta(days=1)

# 执行sql语句

try:

with connection.cursor() as cursor:

# 执行sql语句,插入记录

sql = ‘INSERT INTO employees (first_name, last_name, hire_date, gender, birth_date) VALUES (%s, %s, %s, %s, %s)‘

cursor.execute(sql, (‘Robin‘, ‘Zhyea‘, tomorrow, ‘M‘, date(1989, 6, 14)));

# 没有设置默认自动提交,需要主动提交,以保存所执行的语句

connection.commit()

finally:

connection.close();

执行查询:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

import datetime

import pymysql.cursors

#连接配置信息

config = {

‘host‘:‘127.0.0.1‘,

‘port‘:3306,

‘user‘:‘root‘,

‘password‘:‘zhyea.com‘,

‘db‘:‘employees‘,

‘charset‘:‘utf8mb4‘,

‘cursorclass‘:pymysql.cursors.DictCursor,

}

# 创建连接

connection = pymysql.connect(**config)

# 获取雇佣日期

hire_start = datetime.date(1999, 1, 1)

hire_end = datetime.date(2016, 12, 31)

# 执行sql语句

try:

with connection.cursor() as cursor:

# 执行sql语句,进行查询

sql = ‘SELECT first_name, last_name, hire_date FROM employees WHERE hire_date BETWEEN %s AND %s‘

cursor.execute(sql, (hire_start, hire_end))

# 获取查询结果

result = cursor.fetchone()

print(result)

# 没有设置默认自动提交,需要主动提交,以保存所执行的语句

connection.commit()

finally:

connection.close();

这里的查询支取了一条查询结果,查询结果以字典的形式返回:

从结果集中获取指定数目的记录,可以使用fetchmany方法:

1

result = cursor.fetchmany(2)

不过不建议这样使用,最好在sql语句中设置查询的记录总数。

获取全部结果集可以使用fetchall方法:

1

result = cursor.fetchall()

因为只有两条记录,所以上面提到的这两种查询方式查到的结果是一样的:

1

[{‘last_name‘: ‘Vanderkelen‘, ‘hire_date‘: datetime.date(2015, 8, 12), ‘first_name‘: ‘Geert‘}, {‘last_name‘: ‘Zhyea‘, ‘hire_date‘: datetime.date(2015, 8, 21), ‘first_name‘: ‘Robin‘}]

在django中使用

在django中使用是我找这个的最初目的。目前同时支持python3.4、django1.8的数据库backend并不好找。这个是我目前找到的最好用的。

设置DATABASES和官方推荐使用的MySQLdb的设置没什么区别:

1

2

3

4

5

6

7

8

9

10

DATABASES = {

‘default‘: {

‘ENGINE‘: ‘django.db.backends.mysql‘,

‘NAME‘: ‘mytest‘,

‘USER‘: ‘root‘,

‘PASSWORD‘: ‘zhyea.com‘,

‘HOST‘: ‘127.0.0.1‘,

‘PORT‘: ‘3306‘,

}

}

关键是这里:我们还需要在站点的__init__.py文件中添加如下的内容:

1

2

import pymysql

pymysql.install_as_MySQLdb()

时间: 2024-10-08 00:23:16

使用PyMySQL操作mysql数据库的相关文章

PyMySQL操作mysql数据库(py3必学)

一,安装PyMySQL Python是编程语言,MySQL是数据库,它们是两种不同的技术:要想使Python操作MySQL数据库需要使用驱动.这里选用PyMySQL驱动. 安装方式还是使用pip命令. > pip install  PyMySQL 二,创建MySQL表 执行下面的SQL语句,创建一张users 表. CREATE TABLE `users` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `email` VARCHAR(255) COLLATE u

flask + pymysql操作Mysql数据库

安装flask-sqlalchemy.pymysql模块 pip install flask-sqlalchemy pymysql 安装Mysql数据库 from flask.ext.sqlalchemy import SQLAlchemy from flask import Flask '''配置数据库''' app = Flask(__name__) app.config['SECRET_KEY'] ='hard to guess' # 这里登陆的是root用户,要填上自己的密码,MySQL

用pymysql操作MySQL数据库

工具库安装 pip install pymysql 连接关闭数据库与增删改查操作 # 导入pymysql库 import pymysql # 打开数据库连接 # 参数1:数据库服务器所在的主机+端口号 # 参数2:登陆数据库的用户名 # 参数3:登陆数据库的密码 # 参数4:要连接的数据库 # 参数5:字符编码 db = pymysql.connect( 'localhost', 'root', '123456', 'school', charset = 'utf8' ) # 增删改插操作 #

python 3.6 +pyMysql 操作mysql数据库

版本信息:python:3.6 mysql:5.7 pyMysql:0.7.11 ################################################################# #author: 陈月白 #_blogs: http://www.cnblogs.com/chenyuebai/ ################################################################# # -*- coding: utf-8

如何使用python中的pymysql操作mysql数据库

操作流程 导入模块 from pymsql import * 创建connect链接 conn = connect(host, port, user, password, database, charset) 获取游标对象 cs1 = conn.cursor() 执行语句 count = cs1.execute(SQL语句) 查看执行的语句 cs1.fetchone() # 返回元组结构的一条数据 查看多条语句 cs1.fetchmany(3) # 取出3个数据元组套元组,不写数量就只取一个 查

Python操作mysql数据库出现pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; check

今天在用Python操作mysql数据库出现pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; check报错 "SELECT Failure_code,describe from failure_occur_now order by ID DESC LIMIT 1“黄色区域为报错的位置仔细查找,发现没有语法错误啊,后面将,describe删掉不报错了,原来describe应该是Mysq

使用python操作mysql数据库

这是我之前使用mysql时用到的一些库及开发的工具,这里记录下,也方便我查阅. python版本: 2.7.13 mysql版本: 5.5.36 几个python库 1.mysql-connector-python 是MySQL官方的Python驱动 https://dev.mysql.com/doc/connector-python/en/ 安装: pip install mysql-connector 示例代码: https://github.com/mike-zhang/pyExample

python3操作MySQL数据库

安装PyMySQL 下载地址:https://pypi.python.org/pypi/PyMySQL 1.把操作Mysql数据库封装成类,数据库和表先建好 import pymysql.cursors # ======== Setting linked test databases =========== host = '192.168.17.123' user = 'root' password = '123456' db='polls' # ======== MySql base oper

python操作mysql数据库(一)

最近又开始重新学习python,研究了一些python操作mysql数据库的知识,记录在此,用作学习笔记, 基础环境:Python 3.5.1 mysql版本:5.6.35 (rpm安装方式) 操作系统:Centos7.3 和windows7 一.python连接数据库模块介绍: 目前主要用的有以下几种.MySQLdb和pymsql以及mysql官方提供的mysql-connector-python驱动,MySQLdb模块是python2.X使用比较多的,而python3.X使用的pymsql会