python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库:
gadfly
msql
mysql
postgresql
microsoft sql server 2000
informix
interbase
oracle
sybase
不同的数据库你需要下载不同的db api模块,例如你需要访问oracle数据库和mysql数据,你需要下载oracle和mysql数据库模块。
db-api 是一个规范. 它定义了一系列必须的对象和数据库存取方式, 以便为各种各样的底层数据库系统和多种多样的数据库接口程序提供一致的访问接口 。
python的db-api,为大多数的数据库实现了接口,使用它连接各数据库后,就可以用相同的方式操作各数据库。
python db-api使用流程:
引入 api 模块。
获取与数据库的连接。
执行sql语句和存储过程。
关闭数据库连接。
一、什么是mysqldb?
mysqldb 是用于python链接mysql数据库的接口,它实现了 python 数据库 api 规范 v2.0,基于 mysql c api 上建立的。
二、如何安装mysqldb?
为了用db-api编写mysql脚本,必须确保已经安装了mysql。复制以下代码,并执行:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
如果执行后的输出结果如下所示,意味着你没有安装 mysqldb 模块:
traceback (most recent call last):
file “test.py”, line 3, in
import mysqldb
importerror: no module named mysqldb
如果您选择二进制文件发行版本的话,安装过程基本安装提示即可完成。如果从源代码进行安装的话,则需要切换到mysqldb发行版本的顶级目录,并键入下列命令:
$ gunzip mysql-python-1.2.2.tar.gz
$ tar -xvf mysql-python-1.2.2.tar
$ cd mysql-python-1.2.2
$ python setup.py build
$ python setup.py install
注意:请确保您有root权限来安装上述模块。
三、数据库连接
连接数据库前,请先确认以下事项:
您已经创建了数据库 testdb.
在testdb数据库中您已经创建了表 employee
employee表字段为 first_name, last_name, age, sex 和 income。
连接数据库testdb使用的用户名为 “testuser” ,密码为 “test123”,你可以可以自己设定或者直接使用root用户名及其密码,mysql数据库用户授权请使用grant命令。
在你的机子上已经安装了 python mysqldb 模块。
实例:
以下实例链接mysql的testdb数据库:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 使用execute方法执行sql语句
cursor.execute(“select version()”)
# 使用 fetchone() 方法获取一条数据库。
data = cursor.fetchone()
print “database version : %s ” % data
# 关闭数据库连接
db.close()
执行以上脚本输出结果如下:
database version : 5.0.45
四、创建数据库表
如果数据库连接存在我们可以使用execute()方法来为数据库创建表,如下所示创建表employee:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 如果数据表已经存在使用 execute() 方法删除表。
cursor.execute(“drop table if exists employee”)
# 创建数据表sql语句
sql = “””create table employee (
first_name char(20) not null,
last_name char(20),
age int,
sex char(1),
income float )”””
cursor.execute(sql)
# 关闭数据库连接
db.close()
五、数据库插入操作
以下实例使用执行 sql insert 语句向表 employee 插入记录:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# sql 插入语句
sql = “””insert into employee(first_name,
last_name, age, sex, income)
values (‘mac’, ‘mohan’, 20, ‘m’, 2000)”””
try:
# 执行sql语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# rollback in case there is any error
db.rollback()
# 关闭数据库连接
db.close()
以上例子也可以写成如下形式:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# sql 插入语句
sql = “insert into employee(first_name, \
last_name, age, sex, income) \
values (‘%s’, ‘%s’, ‘%d’, ‘%c’, ‘%d’ )” % \
(‘mac’, ‘mohan’, 20, ‘m’, 2000)
try:
# 执行sql语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 发生错误时回滚
db.rollback()
# 关闭数据库连接
db.close()
实例:
以下代码使用变量向sql语句中传递参数:
…………………………….
user_id = “test123”
password = “password”
con.execute(‘insert into login values(“%s”, “%s”)’ % \
(user_id, password))
…………………………….
六、数据库查询操作
python查询mysql使用 fetchone() 方法获取单条数据, 使用fetchall() 方法获取多条数据。
fetchone(): 该方法获取下一个查询结果集。结果集是一个对象
fetchall():接收全部的返回结果行.
rowcount: 这是一个只读属性,并返回执行execute()方法后影响的行数。
实例:
查询employee表中salary(工资)字段大于1000的所有数据:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# sql 查询语句
sql = “select * from employee \
where income > ‘%d'” % (1000)
try:
# 执行sql语句
cursor.execute(sql)
# 获取所有记录列表
results = cursor.fetchall()
for row in results:
fname = row[0]
lname = row[1]
age = row[2]
sex = row[3]
income = row[4]
# 打印结果
print “fname=%s,lname=%s,age=%d,sex=%s,income=%d” % \
(fname, lname, age, sex, income )
except:
print “error: unable to fecth data”
# 关闭数据库连接
db.close()
以上脚本执行结果如下:
fname=mac, lname=mohan, age=20, sex=m, income=2000
七、数据库更新操作
更新操作用于更新数据表的的数据,以下实例将 testdb表中的 sex 字段全部修改为 ‘m’,age 字段递增1:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import mysqldb
# 打开数据库连接
db = mysqldb.connect(“localhost”,”codecloud”,”test123″,”testdb” )
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# sql 更新语句
sql = “update employee set age = age + 1
where sex = ‘%c'” % (‘m’)
try:
# 执行sql语句
cursor.execute(sql)
# 提交到数据库执行
db.commit()
except:
# 发生错误时回滚
db.rollback()
# 关闭数据库连接
db.close()
执行事务
事务机制可以确保数据一致性。
事务应该具有4个属性:原子性、一致性、隔离性、持久性。这四个属性通常称为acid特性。
原子性(atomicity)。一个事务是一个不可分割的工作单位,事务中包括的诸操作要么都做,要么都不做。
一致性(consistency)。事务必须是使数据库从一个一致性状态变到另一个一致性状态。一致性与原子性是密切相关的。
隔离性(isolation)。一个事务的执行不能被其他事务干扰。即一个事务内部的操作及使用的数据对并发的其他事务是隔离的,并发执行的各个事务之间不能互相干扰。
持久性(durability)。持续性也称永久性(permanence),指一个事务一旦提交,它对数据库中数据的改变就应该是永久性的。接下来的其他操作或故障不应该对其有任何影响。
python db api 2.0 的事务提供了两个方法 commit 或 rollback。
实例:
# sql删除记录语句
sql = “delete from employee where age > ‘%d'” % (20)
try:
# 执行sql语句
cursor.execute(sql)
# 向数据库提交
db.commit()
except:
# 发生错误时回滚
db.rollback()
对于支持事务的数据库, 在python数据库编程中,当游标建立之时,就自动开始了一个隐形的数据库事务。
commit()方法游标的所有更新操作,rollback()方法回滚当前游标的所有操作。每一个方法都开始了一个新的事务。
错误处理
db api中定义了一些数据库操作的错误及异常,下表列出了这些错误和异常:
以上就是本文的全部内容,希望对大家的学习有所帮助。
更多python连接mysql数据库的正确姿势相关文章请关注php中文网!