🔥 HOT: ./library/sqlite.html - Collection
12.6. sqlite3 — DB-API 2.0 interface for SQLite databases¶
Source code: Lib/sqlite3/
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)''')
# Insert a row of data
c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")
# Save (commit) the changes
conn.commit()
# We can also close the connection if we are done with it.
# Just be sure any changes have been committed or they will be lost.
conn.close()
The data you’ve saved is persistent and is available in subsequent sessions:
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 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:
# Never do this -- insecure!
symbol = 'RHAT'
c.execute("SELECT * FROM stocks WHERE symbol = '%s'" % symbol)
# Do this instead
t = ('RHAT',)
c.execute('SELECT * FROM stocks WHERE symbol=?', t)
print(c.fetchone())
# Larger example that inserts many records at a time
purchases = [('2006-03-28', 'BUY', 'IBM', 1000, 45.00),
('2006-04-05', 'BUY', 'MSFT', 1000, 72.00),
('2006-04-06', 'SELL', 'IBM', 500, 53.00),
]
c.executemany('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases)
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.
This example uses the iterator form:
>>> for row in c.execute('SELECT * FROM stocks ORDER BY price'):
print(row)
('2006-01-05', 'BUY', 'RHAT', 100, 35.14)
('2006-03-28', 'BUY', 'IBM', 1000, 45.0)
('2006-04-06', 'SELL', 'IBM', 500, 53.0)
('2006-04-05', 'BUY', 'MSFT', 1000, 72.0)
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.
12.6.1. Module functions and constants¶
-
sqlite3.version¶ The version number of this module, as a string. This is not the version of the SQLite library.
-
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
sqlite3module 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.descriptionis 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”.
-
sqlite3.connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri])¶ Opens a connection to the SQLite database file database. You can use
":memory:"to open a database connection to a database that resides in RAM instead of on disk.When a database is accessed by multiple connections, and one of the processes modifies the database, the SQLite database is locked until that transaction is committed. The timeout parameter specifies how long the connection should wait for the lock to go away until raising an exception. The default for the timeout parameter is 5.0 (five seconds).
For the isolation_level parameter, please see the
isolation_levelproperty ofConnectionobjects.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_DECLTYPESandPARSE_COLNAMESto turn type detection on.By default, check_same_thread is
Trueand only the creating thread may use the connection. If setFalse, 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
sqlite3module uses itsConnectionclass for the connect call. You can, however, subclass theConnectionclass and makeconnect()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
sqlite3module 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.
Changed in version 3.4: Added the uri parameter.
-
sqlite3.register_converter(typename, callable)¶ Registers a callable to convert a bytestring from the database into a custom Python type. The callable will be invoked for all database values that are of the type typename. Confer the parameter detect_types of the
connect()function for how the type detection works. Note that typename and the name of the type in your query are matched in case-insensitive manner.
-
sqlite3.register_adapter(type, callable)¶ Registers a callable to convert the custom Python type type into one of SQLite’s supported types. The callable callable accepts as single parameter the Python value, and must return a value of the following types: int, float, str or bytes.
-
sqlite3.complete_statement(sql)¶ Returns
Trueif 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:
# A minimal SQLite shell for experiments import sqlite3 con = sqlite3.connect(":memory:") con.isolation_level = None cur = con.cursor() buffer = "" print("Enter your SQL commands to execute in sqlite3.") print("Enter a blank line to exit.") 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 onsys.stderr. UseFalseto disable the feature again.
12.6.2. Connection Objects¶
-
class
sqlite3.Connection¶ A SQLite database connection has the following attributes and methods:
-
isolation_level¶ Get or set the current default isolation level.
Nonefor autocommit mode or one of “DEFERRED”, “IMMEDIATE” or “EXCLUSIVE”. See section Controlling Transactions for a more detailed explanation.
-
in_transaction¶ Trueif a transaction is active (there are uncommitted changes),Falseotherwise. Read-only attribute.New in version 3.2.
-
cursor(factory=Cursor)¶ The cursor method accepts a single optional parameter factory. If supplied, this must be a callable returning an instance of
Cursoror 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.
-
close()¶ This closes the database connection. Note that this does not automatically call
commit(). If you just close your database connection without callingcommit()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’sexecute()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’sexecutemany()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’sexecutescript()method with the given sql_script, and returns the cursor.
-
create_function(name, num_params, func)¶ Creates a user-defined function that you can later use from within SQL statements under the function name name. num_params is the number of parameters the function accepts (if num_params is -1, the function may take any number of arguments), and func is a Python callable that is called as the SQL function.
The function can return any of the types supported by SQLite: bytes, str, int, float and
None.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])
-
create_aggregate(name, num_params, aggregate_class)¶ Creates a user-defined aggregate function.
The aggregate class must implement a
stepmethod, which accepts the number of parameters num_params (if num_params is -1, the function may take any number of arguments), and afinalizemethod which will return the final result of the aggregate.The
finalizemethod can return any of the types supported by SQLite: bytes, str, int, float andNone.Example:
import sqlite3 class MySum: def __init__(self): self.count = 0 def step(self, value): self.count += value 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 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 def collate_reverse(string1, string2): if string1 == string2: return 0 elif string1 < string2: return 1 else: return -1 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()
To remove a collation, call
create_collationwithNoneas callable:
-
