说明:PyMysql是在Python3.x版本中用于连接mysql服务器的一个库,在python2中使用mysqldb;PyMysql遵循Python数据库APIV2.0闺房,并包含了pure-Python
Mysql客户端
yum install git
git clone https://github.com/PyMySQL/PyMySQL
cd PyMySQL/
python setup.py install
简单点使用pip安装:pip3.6 install PyMySQL
curl -L https://github.com/PyMySQL/PyMySQL/tarball/pymysql-X.X | tar xz
前提条件
安装了数据库,并创建一个库DB1;在库db1种创建表t
安装了Python的MySQLdb模块
例子:
[root@centos7 ~]# vim 1.py
#!/usr/bin/env python
import pymysql
import sys
print(sys.getdefaultencoding())
#打开数据库连接
db = pymysql.connect(host="localhost",port=3306,user="root",passwd='12345',db="db1",charset="utf8")
#使用cursor()方法获取游标对象
cursor= db.cursor()
#使用execute() 方法执行SQL查询
cursor.execute("select version()")
#使用fetchone()方法获取单条数据
data1=cursor.fetchone()
print("DB version is : %s" %data1)
#关闭连接
db.close()
结果
[root@centos7 ~]# ./1.py
utf-8
DB version is : 5.7.15
[root@centos7 ~]# vim 1.py
#!/usr/bin/env python
import pymysql
#import sys
#print(sys.getdefaultencoding())
#打开数据库连接
db = pymysql.connect(host="localhost",port=3306,user="root",passwd='12345',db="db1",charset="utf8")
#使用cursor()方法获取游标对象
cursor= db.cursor()
#使用execute() 方法执行sql,如果存在执行删除表操作
cursor.execute("drop table if exists t")
#使用预处理语句创建表
sql = """create table t(id int,name varchar(10)) engine=innodb charset utf8"""
cursor.execute(sql)
#data1=cursor.fetchone()
#print("DB version is : %s" %data1)
#关闭连接
db.close()
[root@centos7 ~]# vim 1.py
#!/usr/bin/env python
import pymysql
#import sys
#print(sys.getdefaultencoding())
#打开数据库连接
db = pymysql.connect(host="localhost",port=3306,user="root",passwd='12345',db="db1",charset="utf8")
#使用cursor()方法获取游标对象
cursor= db.cursor()
#使用预处理语句创建表
sql = """insert into t(id,name)
values(1,'china')"""
try:
# 执行sql
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 如果发生错误
db.rollback()
#data1=cursor.fetchone()
#print("DB version is : %s" %data1)
#关闭连接
db.close()
以上的sql语句也可以写成
[root@centos7 ~]# vim 1.py
#!/usr/bin/env python
import pymysql
#import sys
#print(sys.getdefaultencoding())
#打开数据库连接
db = pymysql.connect(host="localhost",port=3306,user="root",passwd='123456',db="db1",charset="utf8")
#使用cursor()方法获取游标对象
cursor= db.cursor()
#使用预处理语句创建表
sql = "insert into t(id,name)\
values('%d','%s')" \
%(2,'usa')
id1 = 4
name1 = 'xxx'
try:
# 执行sql
cursor.execute(sql)
cursor.execute('insert into t(id,name) values("%d","%s")' \
% (id1,name1))
# 提交到数据库执行
db.commit()
except:
# 如果发生错误
db.rollback()
#data1=cursor.fetchone()
#print("DB version is : %s" %data1)
#关闭连接
db.close()
使用fetchone()方法获取单条数据,使用fetchall()方法获取多条数据
fetchone():该方法获取下一个查询结果集,结果集是一个对象
fetchall():接收全部的返回结果行
rowcount:一个只读属性,并返回执行execute()方法后的影响行数
#!/usr/bin/python
#coding=utf8
import pymysql
import sys
print(sys.getdefaultencoding())
# 打开数据库连接
db = pymysql.connect(host="localhost",port=3306,user="root",passwd="123456",db="db1",charset='utf8' )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# SQL 查询语句
sql = "SELECT * FROM t \
WHERE id > '%d'" % (1)
try:
# 执行SQL语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
id = row[0]
name = row[1]
# 打印结果
print ("id=%d,name=%s" % \
(id, name))
except:
print ("Error: unable to fecth data")
db.close()
结果:
[root@centos7 pscripts]# ./db3.sh
utf-8
id=2,name=美国
id=2,name=美国
同数据库的插入操作
事务机制可以确保数据的一致性
事务有四个属性:原子,一致,隔离,持久型;通常称为ACID
Python DB API 2.0 的事务提供了两个方法 commit 或 rollback
比如
#使用预处理语句创建表
sql = """insert into t(id,name)
values(1,'china')"""
try:
# 执行sql
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 如果发生错误
db.rollback()
对于支持事务的数据库,在python数据库编程中,当游标建立之时,就自动开始了一个隐形的数据库事务,这个区别于mysql客户端
commit()方法提交所有的事务,rollback()方法回滚当前游标的所有操作。每个方法都开启了一个新的事务
DB API中定义了一些数据库操作的错误及异常
异常 | 描述 |
Warning | 当有严重警告时触发,例如插入数据是被截断等等。必须是 StandardError 的子类。 |
Error | 警告以外所有其他错误类。必须是 StandardError 的子类。 |
InterfaceError | 当有数据库接口模块本身的错误(而不是数据库的错误)发生时触发。 必须是Error的子类。 |
DatabaseError | 和数据库有关的错误发生时触发。 必须是Error的子类。 |
DataError | 当有数据处理时的错误发生时触发,例如:除零错误,数据超范围等等。 必须是DatabaseError的子类。 |
OperationalError | 指非用户控制的,而是操作数据库时发生的错误。例如:连接意外断开、 数据库名未找到、事务处理失败、 内存分配错误等等操作数据库是发生的错误。 必须是DatabaseError的子类。 |
IntegrityError | 完整性相关的错误,例如外键检查失败等。必须是DatabaseError子类。 |
InternalError | 数据库的内部错误,例如游标(cursor)失效了、事务同步失败等等。 必须是DatabaseError子类。 |
ProgrammingError | 程序错误,例如数据表(table)没找到或已存在、SQL语句语法错误、 参数数量错误等等。必须是DatabaseError的子类。 |
NotSupportedError | 不支持错误,指使用了数据库不支持的函数或API等。例如在连接对象上 使用.rollback()函数, 然而数据库并不支持事务或者事务已关闭。 必须是DatabaseError的子类 |