12.6. Sqlite3 - DB-API 2.0 Interface For SQLite Databases - Python 3.6
12.6. Sqlite3 - DB-API 2.0 Interface For SQLite Databases - Python 3.6
4 documentation
SQLite is a C library that provides a lightweight disk-based database that doesn’t require a
separate server process and allows accessing the database using a nonstandard variant of
the SQL query language. Some applications can use SQLite for internal data storage. It’s also
possible to prototype an application using SQLite and then port the code to a larger database
such as PostgreSQL or Oracle.
The sqlite3 module was written by Gerhard Häring. It provides a SQL interface compliant with
the DB-API 2.0 specification described by PEP 249.
To use the module, you must first create a Connection object that represents the database.
Here the data will be stored in the example.db file:
import sqlite3
conn = sqlite3.connect('example.db')
You can also supply the special name :memory: to create a database in RAM.
Once you have a Connection , you can create a Cursor object and call its execute() method
to perform SQL commands:
c = conn.cursor()
# Create table
c.execute('''CREATE TABLE stocks
(date text, trans text, symbol text, qty real, price real)''')
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
Usually your SQL operations will need to use values from Python variables. You shouldn’t
assemble your query using Python’s string operations because doing so is insecure; it makes
https://docs.python.org/3/library/sqlite3.html 1/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
your program vulnerable to an SQL injection attack (see https://xkcd.com/327/ for humorous
example of what can go wrong).
Instead, use the DB-API’s parameter substitution. Put ? as a placeholder wherever you want
to use a value, and then provide a tuple of values as the second argument to the cursor’s
execute() method. (Other database modules may use a different placeholder, such as %s or
:1 .) For example:
# Do this instead
t = ('RHAT',)
c.execute('SELECT * FROM stocks WHERE symbol=?', t)
print(c.fetchone())
To retrieve data after executing a SELECT statement, you can either treat the cursor as an
iterator, call the cursor’s fetchone() method to retrieve a single matching row, or call
fetchall() to get a list of the matching rows.
>>>
>>> for row in c.execute('SELECT * FROM stocks ORDER BY price'):
print(row)
See also:
https://github.com/ghaering/pysqlite
The pysqlite web page – sqlite3 is developed externally under the name “pysqlite”.
https://www.sqlite.org
The SQLite web page; the documentation describes the syntax and the available data
types for the supported SQL dialect.
http://www.w3schools.com/sql/
Tutorial, reference and examples for learning SQL syntax.
PEP 249 - Database API Specification 2.0
PEP written by Marc-André Lemburg.
https://docs.python.org/3/library/sqlite3.html 2/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
sqlite3. version_info
The version number of this module, as a tuple of integers. This is not the version of the
SQLite library.
sqlite3. sqlite_version
The version number of the run-time SQLite library, as a string.
sqlite3. sqlite_version_info
The version number of the run-time SQLite library, as a tuple of integers.
sqlite3. PARSE_DECLTYPES
This constant is meant to be used with the detect_types parameter of the connect()
function.
Setting it makes the sqlite3 module parse the declared type for each column it returns.
It will parse out the first word of the declared type, i. e. for “integer primary key”, it will
parse out “integer”, or for “number(10)” it will parse out “number”. Then for that column, it
will look into the converters dictionary and use the converter function registered for that
type there.
sqlite3. PARSE_COLNAMES
This constant is meant to be used with the detect_types parameter of the connect()
function.
Setting this makes the SQLite interface parse the column name for each column it
returns. It will look for a string formed [mytype] in there, and then decide that ‘mytype’ is
the type of the column. It will try to find an entry of ‘mytype’ in the converters dictionary
and then use the converter function found there to return the value. The column name
found in Cursor.description is only the first word of the column name, i. e. if you use
something like 'as "x [datetime]"' in your SQL, then we will parse out everything until
the first blank for the column name: the column name would simply be “x”.
https://docs.python.org/3/library/sqlite3.html 3/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
away until raising an exception. The default for the timeout parameter is 5.0 (five
seconds).
SQLite natively supports only the types TEXT, INTEGER, REAL, BLOB and NULL. If you
want to use other types you must add support for them yourself. The detect_types
parameter and the using custom converters registered with the module-level
register_converter() function allow you to easily do that.
detect_types defaults to 0 (i. e. off, no type detection), you can set it to any combination of
PARSE_DECLTYPES and PARSE_COLNAMES to turn type detection on.
By default, check_same_thread is True and only the creating thread may use the
connection. If set False , the returned connection may be shared across multiple threads.
When using multiple threads with the same connection writing operations should be
serialized by the user to avoid data corruption.
By default, the sqlite3 module uses its Connection class for the connect call. You can,
however, subclass the Connection class and make connect() use your class instead by
providing your class for the factory parameter.
Consult the section SQLite and Python types of this manual for details.
The sqlite3 module internally uses a statement cache to avoid SQL parsing overhead. If
you want to explicitly set the number of statements that are cached for the connection,
you can set the cached_statements parameter. The currently implemented default is to
cache 100 statements.
If uri is true, database is interpreted as a URI. This allows you to specify options. For
example, to open a database in read-only mode you can use:
db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)
More information about this feature, including a list of recognized options, can be found in
the SQLite URI documentation.
sqlite3. complete_statement(sql)
Returns True if the string sql contains one or more complete SQL statements terminated
by semicolons. It does not verify that the SQL is syntactically correct, only that there are
no unclosed string literals and the statement is terminated by a semicolon.
This can be used to build a shell for SQLite, as in the following example:
import sqlite3
con = sqlite3.connect(":memory:")
con.isolation_level = None
cur = con.cursor()
buffer = ""
while True:
line = input()
if line == "":
break
buffer += line
if sqlite3.complete_statement(buffer):
try:
buffer = buffer.strip()
cur.execute(buffer)
if buffer.lstrip().upper().startswith("SELECT"):
print(cur.fetchall())
except sqlite3.Error as e:
print("An error occurred:", e.args[0])
buffer = ""
con.close()
sqlite3. enable_callback_tracebacks(flag)
By default you will not get any tracebacks in user-defined functions, aggregates,
converters, authorizer callbacks etc. If you want to debug them, you can call this function
with flag set to True . Afterwards, you will get tracebacks from callbacks on sys.stderr .
Use False to disable the feature again.
isolation_level
Get or set the current isolation level. None for autocommit mode or one of
“DEFERRED”, “IMMEDIATE” or “EXCLUSIVE”. See section Controlling Transactions
https://docs.python.org/3/library/sqlite3.html 5/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
in_transaction
True if a transaction is active (there are uncommitted changes), False otherwise.
Read-only attribute.
cursor(factory=Cursor)
The cursor method accepts a single optional parameter factory. If supplied, this must
be a callable returning an instance of Cursor or its subclasses.
commit()
This method commits the current transaction. If you don’t call this method, anything
you did since the last call to commit() is not visible from other database connections.
If you wonder why you don’t see the data you’ve written to the database, please
check you didn’t forget to call this method.
rollback()
This method rolls back any changes to the database since the last call to commit() .
close()
This closes the database connection. Note that this does not automatically call
commit() . If you just close your database connection without calling commit() first,
your changes will be lost!
execute(sql[, parameters])
This is a nonstandard shortcut that creates a cursor object by calling the cursor()
method, calls the cursor’s execute() method with the parameters given, and returns
the cursor.
executemany(sql[, parameters])
This is a nonstandard shortcut that creates a cursor object by calling the cursor()
method, calls the cursor’s executemany() method with the parameters given, and
returns the cursor.
executescript(sql_script)
This is a nonstandard shortcut that creates a cursor object by calling the cursor()
method, calls the cursor’s executescript() method with the given sql_script, and
returns the cursor.
The function can return any of the types supported by SQLite: bytes, str, int, float and
None .
https://docs.python.org/3/library/sqlite3.html 6/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
Example:
import sqlite3
import hashlib
def md5sum(t):
return hashlib.md5(t).hexdigest()
con = sqlite3.connect(":memory:")
con.create_function("md5", 1, md5sum)
cur = con.cursor()
cur.execute("select md5(?)", (b"foo",))
print(cur.fetchone()[0])
The aggregate class must implement a step method, which accepts the number of
parameters num_params (if num_params is -1, the function may take any number of
arguments), and a finalize method which will return the final result of the
aggregate.
The finalize method can return any of the types supported by SQLite: bytes, str,
int, float and None .
Example:
import sqlite3
class MySum:
def __init__(self):
self.count = 0
def finalize(self):
return self.count
con = sqlite3.connect(":memory:")
con.create_aggregate("mysum", 1, MySum)
cur = con.cursor()
cur.execute("create table test(i)")
cur.execute("insert into test(i) values (1)")
cur.execute("insert into test(i) values (2)")
cur.execute("select mysum(i) from test")
print(cur.fetchone()[0])
create_collation(name, callable)
Creates a collation with the specified name and callable. The callable will be passed
two string arguments. It should return -1 if the first is ordered lower than the second,
0 if they are ordered equal and 1 if the first is ordered higher than the second. Note
https://docs.python.org/3/library/sqlite3.html 7/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
that this controls sorting (ORDER BY in SQL) so your comparisons don’t affect other
SQL operations.
Note that the callable will get its parameters as Python bytestrings, which will
normally be encoded in UTF-8.
The following example shows a custom collation that sorts “the wrong way”:
import sqlite3
con = sqlite3.connect(":memory:")
con.create_collation("reverse", collate_reverse)
cur = con.cursor()
cur.execute("create table test(x)")
cur.executemany("insert into test(x) values (?)", [("a",), ("b",)])
cur.execute("select x from test order by x collate reverse")
for row in cur:
print(row)
con.close()
con.create_collation("reverse", None)
interrupt()
You can call this method from a different thread to abort any queries that might be
executing on the connection. The query will then abort and the caller will get an
exception.
set_authorizer(authorizer_callback)
This routine registers a callback. The callback is invoked for each attempt to access a
column of a table in the database. The callback should return SQLITE_OK if access is
allowed, SQLITE_DENY if the entire SQL statement should be aborted with an error
and SQLITE_IGNORE if the column should be treated as a NULL value. These
constants are available in the sqlite3 module.
The first argument to the callback signifies what kind of operation is to be authorized.
The second and third argument will be arguments or None depending on the first
argument. The 4th argument is the name of the database (“main”, “temp”, etc.) if
applicable. The 5th argument is the name of the inner-most trigger or view that is
responsible for the access attempt or None if this access attempt is directly from input
SQL code.
https://docs.python.org/3/library/sqlite3.html 8/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
Please consult the SQLite documentation about the possible values for the first
argument and the meaning of the second and third argument depending on the first
one. All necessary constants are available in the sqlite3 module.
set_progress_handler(handler, n)
This routine registers a callback. The callback is invoked for every n instructions of
the SQLite virtual machine. This is useful if you want to get called from SQLite during
long-running operations, for example to update a GUI.
If you want to clear any previously installed progress handler, call the method with
None for handler.
Returning a non-zero value from the handler function will terminate the currently
executing query and cause it to raise an OperationalError exception.
set_trace_callback(trace_callback)
Registers trace_callback to be called for each SQL statement that is actually
executed by the SQLite backend.
The only argument passed to the callback is the statement (as string) that is being
executed. The return value of the callback is ignored. Note that the backend does not
only run statements passed to the Cursor.execute() methods. Other sources
include the transaction management of the Python module and the execution of
triggers defined in the current database.
enable_load_extension(enabled)
This routine allows/disallows the SQLite engine to load SQLite extensions from
shared libraries. SQLite extensions can define new functions, aggregates or whole
new virtual table implementations. One well-known extension is the fulltext-search
extension distributed with SQLite.
import sqlite3
con = sqlite3.connect(":memory:")
https://docs.python.org/3/library/sqlite3.html 9/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
load_extension(path)
This routine loads a SQLite extension from a shared library. You have to enable
extension loading with enable_load_extension() before you can use this routine.
row_factory
You can change this attribute to a callable that accepts the cursor and the original
row as a tuple and will return the real result row. This way, you can implement more
advanced ways of returning results, such as returning an object that can also access
columns by name.
Example:
import sqlite3
con = sqlite3.connect(":memory:")
con.row_factory = dict_factory
cur = con.cursor()
cur.execute("select 1 as a")
print(cur.fetchone()["a"])
If returning a tuple doesn’t suffice and you want name-based access to columns, you
should consider setting row_factory to the highly-optimized sqlite3.Row type. Row
provides both index-based and case-insensitive name-based access to columns with
almost no memory overhead. It will probably be better than your own custom
dictionary-based approach or even a db_row based solution.
text_factory
https://docs.python.org/3/library/sqlite3.html 10/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
Using this attribute you can control what objects are returned for the TEXT data type.
By default, this attribute is set to str and the sqlite3 module will return Unicode
objects for TEXT . If you want to return bytestrings instead, you can set it to bytes .
You can also set it to any other callable that accepts a single bytestring parameter
and returns the resulting object.
import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
AUSTRIA = "\xd6sterreich"
total_changes
Returns the total number of database rows that have been modified, inserted, or
deleted since the database connection was opened.
iterdump()
Returns an iterator to dump the database in an SQL text format. Useful when saving
an in-memory database for later restoration. This function provides the same
capabilities as the .dump command in the sqlite3 shell.
Example:
con = sqlite3.connect('existing_db.db')
with open('dump.sql', 'w') as f:
https://docs.python.org/3/library/sqlite3.html 11/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
execute(sql[, parameters])
Executes an SQL statement. The SQL statement may be parameterized (i. e.
placeholders instead of SQL literals). The sqlite3 module supports two kinds of
placeholders: question marks (qmark style) and named placeholders (named style).
import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.execute("create table people (name_last, age)")
who = "Yeltsin"
age = 72
print(cur.fetchone())
execute() will only execute a single SQL statement. If you try to execute more than
one statement with it, it will raise a Warning . Use executescript() if you want to
execute multiple SQL statements with one call.
executemany(sql, seq_of_parameters)
Executes an SQL command against all parameter sequences or mappings found in
the sequence seq_of_parameters. The sqlite3 module also allows using an iterator
yielding parameters instead of a sequence.
import sqlite3
class IterChars:
def __init__(self):
self.count = ord('a')
def __iter__(self):
return self
def __next__(self):
https://docs.python.org/3/library/sqlite3.html 12/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.execute("create table characters(c)")
theIter = IterChars()
cur.executemany("insert into characters(c) values (?)", theIter)
import sqlite3
import string
def char_generator():
for c in string.ascii_lowercase:
yield (c,)
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.execute("create table characters(c)")
executescript(sql_script)
This is a nonstandard convenience method for executing multiple SQL statements at
once. It issues a COMMIT statement first, then executes the SQL script it gets as a
parameter.
Example:
import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.executescript("""
create table person(
firstname,
lastname,
age
);
title,
author,
published
);
fetchone()
Fetches the next row of a query result set, returning a single sequence, or None when
no more data is available.
fetchmany(size=cursor.arraysize)
Fetches the next set of rows of a query result, returning a list. An empty list is
returned when no more rows are available.
The number of rows to fetch per call is specified by the size parameter. If it is not
given, the cursor’s arraysize determines the number of rows to be fetched. The
method should try to fetch as many rows as indicated by the size parameter. If this is
not possible due to the specified number of rows not being available, fewer rows may
be returned.
Note there are performance considerations involved with the size parameter. For
optimal performance, it is usually best to use the arraysize attribute. If the size
parameter is used, then it is best for it to retain the same value from one
fetchmany() call to the next.
fetchall()
Fetches all (remaining) rows of a query result, returning a list. Note that the cursor’s
arraysize attribute can affect the performance of this operation. An empty list is
returned when no rows are available.
close()
Close the cursor now (rather than whenever __del__ is called).
The cursor will be unusable from this point forward; a ProgrammingError exception
will be raised if any operation is attempted with the cursor.
rowcount
Although the Cursor class of the sqlite3 module implements this attribute, the
database engine’s own support for the determination of “rows affected”/”rows
selected” is quirky.
https://docs.python.org/3/library/sqlite3.html 14/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
As required by the Python DB API Spec, the rowcount attribute “is -1 in case no
executeXX() has been performed on the cursor or the rowcount of the last operation
is not determinable by the interface”. This includes SELECT statements because we
cannot determine the number of rows a query produced until all rows were fetched.
With SQLite versions before 3.6.5, rowcount is set to 0 if you make a DELETE FROM
table without any condition.
lastrowid
This read-only attribute provides the rowid of the last modified row. It is only set if you
issued an INSERT or a REPLACE statement using the execute() method. For
operations other than INSERT or REPLACE or when executemany() is called,
lastrowid is set to None .
If the INSERT or REPLACE statement failed to insert the previous successful rowid is
returned.
arraysize
Read/write attribute that controls the number of rows returned by fetchmany() . The
default value is 1 which means a single row would be fetched per call.
description
This read-only attribute provides the column names of the last query. To remain
compatible with the Python DB API, it returns a 7-tuple for each column where the
last six items of each tuple are None .
connection
This read-only attribute provides the SQLite database Connection used by the
Cursor object. A Cursor object created by calling con.cursor() will have a
connection attribute that refers to con:
It supports mapping access by column name and index, iteration, representation, equality
testing and len() .
https://docs.python.org/3/library/sqlite3.html 15/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
If two Row objects have exactly the same columns and their members are equal, they
compare equal.
keys()
This method returns a list of column names. Immediately after a query, it is the first
member of each tuple in Cursor.description .
conn = sqlite3.connect(":memory:")
c = conn.cursor()
c.execute('''create table stocks
(date text, trans text, symbol text,
qty real, price real)''')
c.execute("""insert into stocks
values ('2006-01-05','BUY','RHAT',100,35.14)""")
conn.commit()
c.close()
>>>
>>> conn.row_factory = sqlite3.Row
>>> c = conn.cursor()
>>> c.execute('select * from stocks')
<sqlite3.Cursor object at 0x7f4e7dd8fa80>
>>> r = c.fetchone()
>>> type(r)
<class 'sqlite3.Row'>
>>> tuple(r)
('2006-01-05', 'BUY', 'RHAT', 100.0, 35.14)
>>> len(r)
5
>>> r[2]
'RHAT'
>>> r.keys()
['date', 'trans', 'symbol', 'qty', 'price']
>>> r['qty']
100.0
>>> for member in r:
... print(member)
...
2006-01-05
BUY
RHAT
100.0
35.14
12.6.5. Exceptions
exception sqlite3. Warning
A subclass of Exception .
https://docs.python.org/3/library/sqlite3.html 16/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
SQLite natively supports the following types: NULL , INTEGER , REAL , TEXT , BLOB .
The following Python types can thus be sent to SQLite without any problem:
SQLite
Python type type
None NULL
int INTEGER
float REAL
str TEXT
bytes BLOB
The type system of the sqlite3 module is extensible in two ways: you can store additional
Python types in a SQLite database via object adaptation, and you can let the sqlite3 module
convert SQLite types to different Python types via converters.
https://docs.python.org/3/library/sqlite3.html 17/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
There are two ways to enable the sqlite3 module to adapt a custom Python type to one of
the supported ones.
This is a good approach if you write the class yourself. Let’s suppose you have a class like
this:
class Point:
def __init__(self, x, y):
self.x, self.y = x, y
Now you want to store the point in a single SQLite column. First you’ll have to choose one of
the supported types first to be used for representing the point. Let’s just use str and separate
the coordinates using a semicolon. Then you need to give your class a method
__conform__(self, protocol) which must return the converted value. The parameter
protocol will be PrepareProtocol .
import sqlite3
class Point:
def __init__(self, x, y):
self.x, self.y = x, y
con = sqlite3.connect(":memory:")
cur = con.cursor()
p = Point(4.0, -3.2)
cur.execute("select ?", (p,))
print(cur.fetchone()[0])
The other possibility is to create a function that converts the type to the string representation
and register the function with register_adapter() .
import sqlite3
class Point:
def __init__(self, x, y):
https://docs.python.org/3/library/sqlite3.html 18/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
self.x, self.y = x, y
def adapt_point(point):
return "%f;%f" % (point.x, point.y)
sqlite3.register_adapter(Point, adapt_point)
con = sqlite3.connect(":memory:")
cur = con.cursor()
p = Point(4.0, -3.2)
cur.execute("select ?", (p,))
print(cur.fetchone()[0])
The sqlite3 module has two default adapters for Python’s built-in datetime.date and
datetime.datetime types. Now let’s suppose we want to store datetime.datetime objects
not in ISO representation, but as a Unix timestamp.
import sqlite3
import datetime
import time
def adapt_datetime(ts):
return time.mktime(ts.timetuple())
sqlite3.register_adapter(datetime.datetime, adapt_datetime)
con = sqlite3.connect(":memory:")
cur = con.cursor()
now = datetime.datetime.now()
cur.execute("select ?", (now,))
print(cur.fetchone()[0])
Writing an adapter lets you send custom Python types to SQLite. But to make it really useful
we need to make the Python to SQLite to Python roundtrip work.
Enter converters.
Let’s go back to the Point class. We stored the x and y coordinates separated via semicolons
as strings in SQLite.
First, we’ll define a converter function that accepts the string as a parameter and constructs a
Point object from it.
Note: Converter functions always get called with a bytes object, no matter under which
data type you sent the value to SQLite.
def convert_point(s):
x, y = map(float, s.split(b";"))
return Point(x, y)
https://docs.python.org/3/library/sqlite3.html 19/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
Now you need to make the sqlite3 module know that what you select from the database is
actually a point. There are two ways of doing this:
Both ways are described in section Module functions and constants, in the entries for the
constants PARSE_DECLTYPES and PARSE_COLNAMES .
import sqlite3
class Point:
def __init__(self, x, y):
self.x, self.y = x, y
def __repr__(self):
return "(%f;%f)" % (self.x, self.y)
def adapt_point(point):
return ("%f;%f" % (point.x, point.y)).encode('ascii')
def convert_point(s):
x, y = list(map(float, s.split(b";")))
return Point(x, y)
p = Point(4.0, -3.2)
#########################
# 1) Using declared types
con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_DECLTYPES)
cur = con.cursor()
cur.execute("create table test(p point)")
#######################
# 1) Using column names
con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES)
cur = con.cursor()
cur.execute("create table test(p)")
https://docs.python.org/3/library/sqlite3.html 20/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
There are default adapters for the date and datetime types in the datetime module. They will
be sent as ISO dates/ISO timestamps to SQLite.
The default converters are registered under the name “date” for datetime.date and under
the name “timestamp” for datetime.datetime .
This way, you can use date/timestamps from Python without any additional fiddling in most
cases. The format of the adapters is also compatible with the experimental SQLite date/time
functions.
import sqlite3
import datetime
today = datetime.date.today()
now = datetime.datetime.now()
If a timestamp stored in SQLite has a fractional part longer than 6 numbers, its value will be
truncated to microsecond precision by the timestamp converter.
You can control which kind of BEGIN statements sqlite3 implicitly executes (or none at all) via
the isolation_level parameter to the connect() call, or via the isolation_level property of
connections.
https://docs.python.org/3/library/sqlite3.html 21/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
Otherwise leave it at its default, which will result in a plain “BEGIN” statement, or set it to one
of SQLite’s supported isolation levels: “DEFERRED”, “IMMEDIATE” or “EXCLUSIVE”.
Changed in version 3.6: sqlite3 used to implicitly commit an open transaction before DDL
statements. This is no longer the case.
import sqlite3
persons = [
("Hugo", "Boss"),
("Calvin", "Klein")
]
con = sqlite3.connect(":memory:")
One useful feature of the sqlite3 module is the built-in sqlite3.Row class designed to be
used as a row factory.
Rows wrapped with this class can be accessed both by index (like tuples) and case-
insensitively by name:
https://docs.python.org/3/library/sqlite3.html 22/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
import sqlite3
con = sqlite3.connect(":memory:")
con.row_factory = sqlite3.Row
cur = con.cursor()
cur.execute("select 'John' as name, 42 as age")
for row in cur:
assert row[0] == row["name"]
assert row["name"] == row["nAmE"]
assert row[1] == row["age"]
assert row[1] == row["AgE"]
Connection objects can be used as context managers that automatically commit or rollback
transactions. In the event of an exception, the transaction is rolled back; otherwise, the
transaction is committed:
import sqlite3
con = sqlite3.connect(":memory:")
con.execute("create table person (id integer primary key, firstname varchar un
Older SQLite versions had issues with sharing connections between threads. That’s why the
Python module disallows sharing connections and cursors between threads. If you still try to
do so, you will get an exception at runtime.
The only exception is calling the interrupt() method, which only makes sense to call from a
different thread.
Footnotes
[1] (1, 2) The sqlite3 module is not built with loadable extension support by default,
https://docs.python.org/3/library/sqlite3.html 23/24
1/9/2018 12.6. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 3.6.4 documentation
because some platforms (notably Mac OS X) have SQLite libraries which are compiled
without this feature. To get loadable extension support, you must pass –enable-
loadable-sqlite-extensions to configure.
https://docs.python.org/3/library/sqlite3.html 24/24