Introduction to SQLite in Python

This article is part 1 of 2 in the series Python SQLite Tutorial
Published: Thursday 11th April 2013 
Last Updated: Thursday 12 th December 2013

SQLite3 is a very easy to use database engine. It is self-contained, serverless, zero-configuration and transactional. It is very fast and lightweight, and the entire database is stored in a single disk file. It is used in a lot of applications as internal data storage. The Python Standard Library includes a module called "sqlite3" intended for working with this database. This module is a SQL interface compliant with the DB-API 2.0 specification.

Using Python's SQLite Module

To use the SQLite3 module we need to add an import statement to our python script:

Connecting SQLite to the Database

We use the function sqlite3.connect to connect to the database. We can use the argument ":memory:" to create a temporary DB in the RAM or pass the name of a file to open or create it.

When we are done working with the DB we need to close the connection:

Creating (CREATE) and Deleting (DROP) Tables

In order to make any operation with the database we need to get a cursor object and pass the SQL statements to the cursor object to execute them. Finally it is necessary to commit the changes. We are going to create a users table with name, phone, email and password columns.

To drop a table:

Please note that the commit function is invoked on the db object, not the cursor object. If we typecursor.commit we will get AttributeError: 'sqlite3.Cursor' object has no attribute 'commit'

Inserting (INSERT) Data into the Database

To insert data we use the cursor to execute the query. If you need values from Python variables it is recommended to use the "?" placeholder. Never use string operations or concatenation to make your queries because is very insecure. In this example we are going to insert two users in the database, their information is stored in python variables.

The values of the Python variables are passed inside a tuple. Another way to do this is passing a dictionary using the ":keyname" placeholder:

If you need to insert several users use executemany and a list with the tuples:

If you need to get the id of the row you just inserted use lastrowid:

Retrieving Data (SELECT) with SQLite

To retrieve data, execute the query against the cursor object and then use fetchone() to retrieve a single row or fetchall() to retrieve all the rows.

The cursor object works as an iterator, invoking fetchall() automatically:

To retrive data with conditions, use again the "?" placeholder:

Updating (UPDATE) and Deleting (DELETE) Data

The procedure to update or delete data is the same as inserting data:

Using SQLite Transactions

Transactions are an useful property of database systems. It ensures the atomicity of the Database. Use committo save the changes:

Or rollback to roll back any change to the database since the last call to commit:

Please remember to always call commit to save the changes. If you close the connection using close or the connection to the file is lost (maybe the program finishes unexpectedly), not committed changes will be lost.

SQLite Database Exceptions

For best practices always surround the database operations with a try clause or a context manager:

In this example we used a try/except/finally clause to catch any exception in the code. The finally keyword is very important because it always closes the database connection correctly. Please refer to this article to find more about exceptions. Please take a look to:

This is called a catch-all clause, This is used here only as an example, in a real application you should catch a specific exception such as IntegrityError or DatabaseError, for more information please refer to DB-API 2.0 Exceptions.

We can use the Connection object as context manager to automatically commit or rollback transactions:

In the example above if the insert statement raises an exception, the transaction will be rolled back and the message gets printed; otherwise the transaction will be committed. Please note that we call execute on the dbobject, not the cursor object.

SQLite Row Factory and Data Types

The following table shows the relation between SQLite datatypes and Python datatypes:

  • None type is converted to NULL
  • int type is converted to INTEGER
  • float type is converted to REAL
  • str type is converted to TEXT
  • bytes type is converted to BLOB

The row factory class sqlite3.Row is used to access the columns of a query by name instead of by index:




via:http://www.pythoncentral.io/introduction-to-sqlite-in-python/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值