使用SQLite

SQLite是一种嵌入式数据库,它的数据库就是一个文件。由于SQLite本身是C写的,而且体积很小,所以,经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。

Python就内置了SQLite3,所以,在Python中使用SQLite,不需要安装任何东西,直接使用。

在使用SQLite前,我们先要搞清楚几个概念:

表是数据库中存放关系数据的集合,一个数据库里面通常都包含多个表,比如学生的表,班级的表,学校的表,等等。表和表之间通过外键关联。

要操作关系数据库,首先需要连接到数据库,一个数据库连接称为Connection;

连接到数据库后,需要打开游标,称之为Cursor,通过Cursor执行SQL语句,然后,获得执行结果。

Python定义了一套操作数据库的API接口,任何数据库要连接到Python,只需要提供符合Python标准的数据库驱动即可。

由于SQLite的驱动内置在Python标准库中,所以我们可以直接来操作SQLite数据库。

我们在Python交互式命令行实践一下:

  1. # 导入SQLite驱动:
  2. >>> import sqlite3
  3. # 连接到SQLite数据库
  4. # 数据库文件是test.db
  5. # 如果文件不存在,会自动在当前目录创建:
  6. >>> conn = sqlite3.connect('test.db')
  7. # 创建一个Cursor:
  8. >>> cursor = conn.cursor()
  9. # 执行一条SQL语句,创建user表:
  10. >>> cursor.execute('create table user (id varchar(20) primary key, name varchar(20))')
  11. <sqlite3.Cursor object at 0x10f8aa260>
  12. # 继续执行一条SQL语句,插入一条记录:
  13. >>> cursor.execute('insert into user (id, name) values (\'1\', \'Michael\')')
  14. <sqlite3.Cursor object at 0x10f8aa260>
  15. # 通过rowcount获得插入的行数:
  16. >>> cursor.rowcount
  17. 1
  18. # 关闭Cursor:
  19. >>> cursor.close()
  20. # 提交事务:
  21. >>> conn.commit()
  22. # 关闭Connection:
  23. >>> conn.close()

我们再试试查询记录:

  1. >>> conn = sqlite3.connect('test.db')
  2. >>> cursor = conn.cursor()
  3. # 执行查询语句:
  4. >>> cursor.execute('select * from user where id=?', '1')
  5. <sqlite3.Cursor object at 0x10f8aa340>
  6. # 获得查询结果集:
  7. >>> values = cursor.fetchall()
  8. >>> values
  9. [('1', 'Michael')]
  10. >>> cursor.close()
  11. >>> conn.close()

使用Python的DB-API时,只要搞清楚ConnectionCursor对象,打开后一定记得关闭,就可以放心地使用。

使用Cursor对象执行insertupdatedelete语句时,执行结果由rowcount返回影响的行数,就可以拿到执行结果。

使用Cursor对象执行select语句时,通过featchall()可以拿到结果集。结果集是一个list,每个元素都是一个tuple,对应一行记录。

如果SQL语句带有参数,那么需要把参数按照位置传递给execute()方法,有几个?占位符就必须对应几个参数,例如:

  1. cursor.execute('select * from user where id=?', '1')

SQLite支持常见的标准SQL语句以及几种常见的数据类型。具体文档请参阅SQLite官方网站。

小结

在Python中操作数据库时,要先导入数据库对应的驱动,然后,通过Connection对象和Cursor对象操作数据。

要确保打开的Connection对象和Cursor对象都正确地被关闭,否则,资源就会泄露。

如何才能确保出错的情况下也关闭掉Connection对象和Cursor对象呢?请回忆try:…except:…finally:…的用法。

练习

请编写函数,在Sqlite中根据分数段查找指定的名字:

  1. # -*- coding: utf-8 -*-
  2. import os, sqlite3
  3. db_file = os.path.join(os.path.dirname(__file__), 'test.db')
  4. if os.path.isfile(db_file):
  5. os.remove(db_file)
  6. # 初始数据:
  7. conn = sqlite3.connect(db_file)
  8. cursor = conn.cursor()
  9. cursor.execute('create table user(id varchar(20) primary key, name varchar(20), score int)')
  10. cursor.execute(r"insert into user values ('A-001', 'Adam', 95)")
  11. cursor.execute(r"insert into user values ('A-002', 'Bart', 62)")
  12. cursor.execute(r"insert into user values ('A-003', 'Lisa', 78)")
  13. cursor.close()
  14. conn.commit()
  15. conn.close()
  16. def get_score_in(low, high):
  17. ' 返回指定分数区间的名字,按分数从低到高排序 '
  18. pass
  19. # 测试:
  20. assert get_score_in(80, 95) == ['Adam'], get_score_in(80, 95)
  21. assert get_score_in(60, 80) == ['Bart', 'Lisa'], get_score_in(60, 80)
  22. assert get_score_in(60, 100) == ['Bart', 'Lisa', 'Adam'], get_score_in(60, 100)
  23. print('Pass')

参考源码

do_sqlite.py

原文: https://wizardforcel.gitbooks.io/liaoxuefeng/content/py3/92.html