Home | History | Annotate | Download | only in library
      1 :mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases
      2 ============================================================
      3 
      4 .. module:: sqlite3
      5    :synopsis: A DB-API 2.0 implementation using SQLite 3.x.
      6 
      7 .. sectionauthor:: Gerhard Hring <gh (a] ghaering.de>
      8 
      9 **Source code:** :source:`Lib/sqlite3/`
     10 
     11 --------------
     12 
     13 SQLite is a C library that provides a lightweight disk-based database that
     14 doesn't require a separate server process and allows accessing the database
     15 using a nonstandard variant of the SQL query language. Some applications can use
     16 SQLite for internal data storage.  It's also possible to prototype an
     17 application using SQLite and then port the code to a larger database such as
     18 PostgreSQL or Oracle.
     19 
     20 The sqlite3 module was written by Gerhard Hring.  It provides a SQL interface
     21 compliant with the DB-API 2.0 specification described by :pep:`249`.
     22 
     23 To use the module, you must first create a :class:`Connection` object that
     24 represents the database.  Here the data will be stored in the
     25 :file:`example.db` file::
     26 
     27    import sqlite3
     28    conn = sqlite3.connect('example.db')
     29 
     30 You can also supply the special name ``:memory:`` to create a database in RAM.
     31 
     32 Once you have a :class:`Connection`, you can create a :class:`Cursor`  object
     33 and call its :meth:`~Cursor.execute` method to perform SQL commands::
     34 
     35    c = conn.cursor()
     36 
     37    # Create table
     38    c.execute('''CREATE TABLE stocks
     39                 (date text, trans text, symbol text, qty real, price real)''')
     40 
     41    # Insert a row of data
     42    c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")
     43 
     44    # Save (commit) the changes
     45    conn.commit()
     46 
     47    # We can also close the connection if we are done with it.
     48    # Just be sure any changes have been committed or they will be lost.
     49    conn.close()
     50 
     51 The data you've saved is persistent and is available in subsequent sessions::
     52 
     53    import sqlite3
     54    conn = sqlite3.connect('example.db')
     55    c = conn.cursor()
     56 
     57 Usually your SQL operations will need to use values from Python variables.  You
     58 shouldn't assemble your query using Python's string operations because doing so
     59 is insecure; it makes your program vulnerable to an SQL injection attack
     60 (see https://xkcd.com/327/ for humorous example of what can go wrong).
     61 
     62 Instead, use the DB-API's parameter substitution.  Put ``?`` as a placeholder
     63 wherever you want to use a value, and then provide a tuple of values as the
     64 second argument to the cursor's :meth:`~Cursor.execute` method.  (Other database
     65 modules may use a different placeholder, such as ``%s`` or ``:1``.) For
     66 example::
     67 
     68    # Never do this -- insecure!
     69    symbol = 'RHAT'
     70    c.execute("SELECT * FROM stocks WHERE symbol = '%s'" % symbol)
     71 
     72    # Do this instead
     73    t = ('RHAT',)
     74    c.execute('SELECT * FROM stocks WHERE symbol=?', t)
     75    print(c.fetchone())
     76 
     77    # Larger example that inserts many records at a time
     78    purchases = [('2006-03-28', 'BUY', 'IBM', 1000, 45.00),
     79                 ('2006-04-05', 'BUY', 'MSFT', 1000, 72.00),
     80                 ('2006-04-06', 'SELL', 'IBM', 500, 53.00),
     81                ]
     82    c.executemany('INSERT INTO stocks VALUES (?,?,?,?,?)', purchases)
     83 
     84 To retrieve data after executing a SELECT statement, you can either treat the
     85 cursor as an :term:`iterator`, call the cursor's :meth:`~Cursor.fetchone` method to
     86 retrieve a single matching row, or call :meth:`~Cursor.fetchall` to get a list of the
     87 matching rows.
     88 
     89 This example uses the iterator form::
     90 
     91    >>> for row in c.execute('SELECT * FROM stocks ORDER BY price'):
     92            print(row)
     93 
     94    ('2006-01-05', 'BUY', 'RHAT', 100, 35.14)
     95    ('2006-03-28', 'BUY', 'IBM', 1000, 45.0)
     96    ('2006-04-06', 'SELL', 'IBM', 500, 53.0)
     97    ('2006-04-05', 'BUY', 'MSFT', 1000, 72.0)
     98 
     99 
    100 .. seealso::
    101 
    102    https://github.com/ghaering/pysqlite
    103       The pysqlite web page -- sqlite3 is developed externally under the name
    104       "pysqlite".
    105 
    106    https://www.sqlite.org
    107       The SQLite web page; the documentation describes the syntax and the
    108       available data types for the supported SQL dialect.
    109 
    110    http://www.w3schools.com/sql/
    111       Tutorial, reference and examples for learning SQL syntax.
    112 
    113    :pep:`249` - Database API Specification 2.0
    114       PEP written by Marc-Andr Lemburg.
    115 
    116 
    117 .. _sqlite3-module-contents:
    118 
    119 Module functions and constants
    120 ------------------------------
    121 
    122 
    123 .. data:: version
    124 
    125    The version number of this module, as a string. This is not the version of
    126    the SQLite library.
    127 
    128 
    129 .. data:: version_info
    130 
    131    The version number of this module, as a tuple of integers. This is not the
    132    version of the SQLite library.
    133 
    134 
    135 .. data:: sqlite_version
    136 
    137    The version number of the run-time SQLite library, as a string.
    138 
    139 
    140 .. data:: sqlite_version_info
    141 
    142    The version number of the run-time SQLite library, as a tuple of integers.
    143 
    144 
    145 .. data:: PARSE_DECLTYPES
    146 
    147    This constant is meant to be used with the *detect_types* parameter of the
    148    :func:`connect` function.
    149 
    150    Setting it makes the :mod:`sqlite3` module parse the declared type for each
    151    column it returns.  It will parse out the first word of the declared type,
    152    i. e.  for "integer primary key", it will parse out "integer", or for
    153    "number(10)" it will parse out "number". Then for that column, it will look
    154    into the converters dictionary and use the converter function registered for
    155    that type there.
    156 
    157 
    158 .. data:: PARSE_COLNAMES
    159 
    160    This constant is meant to be used with the *detect_types* parameter of the
    161    :func:`connect` function.
    162 
    163    Setting this makes the SQLite interface parse the column name for each column it
    164    returns.  It will look for a string formed [mytype] in there, and then decide
    165    that 'mytype' is the type of the column. It will try to find an entry of
    166    'mytype' in the converters dictionary and then use the converter function found
    167    there to return the value. The column name found in :attr:`Cursor.description`
    168    is only the first word of the column name, i.  e. if you use something like
    169    ``'as "x [datetime]"'`` in your SQL, then we will parse out everything until the
    170    first blank for the column name: the column name would simply be "x".
    171 
    172 
    173 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri])
    174 
    175    Opens a connection to the SQLite database file *database*. You can use
    176    ``":memory:"`` to open a database connection to a database that resides in RAM
    177    instead of on disk.
    178 
    179    When a database is accessed by multiple connections, and one of the processes
    180    modifies the database, the SQLite database is locked until that transaction is
    181    committed. The *timeout* parameter specifies how long the connection should wait
    182    for the lock to go away until raising an exception. The default for the timeout
    183    parameter is 5.0 (five seconds).
    184 
    185    For the *isolation_level* parameter, please see the
    186    :attr:`~Connection.isolation_level` property of :class:`Connection` objects.
    187 
    188    SQLite natively supports only the types TEXT, INTEGER, REAL, BLOB and NULL. If
    189    you want to use other types you must add support for them yourself. The
    190    *detect_types* parameter and the using custom **converters** registered with the
    191    module-level :func:`register_converter` function allow you to easily do that.
    192 
    193    *detect_types* defaults to 0 (i. e. off, no type detection), you can set it to
    194    any combination of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` to turn
    195    type detection on.
    196 
    197    By default, *check_same_thread* is :const:`True` and only the creating thread may
    198    use the connection. If set :const:`False`, the returned connection may be shared
    199    across multiple threads. When using multiple threads with the same connection
    200    writing operations should be serialized by the user to avoid data corruption.
    201 
    202    By default, the :mod:`sqlite3` module uses its :class:`Connection` class for the
    203    connect call.  You can, however, subclass the :class:`Connection` class and make
    204    :func:`connect` use your class instead by providing your class for the *factory*
    205    parameter.
    206 
    207    Consult the section :ref:`sqlite3-types` of this manual for details.
    208 
    209    The :mod:`sqlite3` module internally uses a statement cache to avoid SQL parsing
    210    overhead. If you want to explicitly set the number of statements that are cached
    211    for the connection, you can set the *cached_statements* parameter. The currently
    212    implemented default is to cache 100 statements.
    213 
    214    If *uri* is true, *database* is interpreted as a URI. This allows you
    215    to specify options. For example, to open a database in read-only mode
    216    you can use::
    217 
    218        db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)
    219 
    220    More information about this feature, including a list of recognized options, can
    221    be found in the `SQLite URI documentation <https://www.sqlite.org/uri.html>`_.
    222 
    223    .. versionchanged:: 3.4
    224       Added the *uri* parameter.
    225 
    226 
    227 .. function:: register_converter(typename, callable)
    228 
    229    Registers a callable to convert a bytestring from the database into a custom
    230    Python type. The callable will be invoked for all database values that are of
    231    the type *typename*. Confer the parameter *detect_types* of the :func:`connect`
    232    function for how the type detection works. Note that the case of *typename* and
    233    the name of the type in your query must match!
    234 
    235 
    236 .. function:: register_adapter(type, callable)
    237 
    238    Registers a callable to convert the custom Python type *type* into one of
    239    SQLite's supported types. The callable *callable* accepts as single parameter
    240    the Python value, and must return a value of the following types: int,
    241    float, str or bytes.
    242 
    243 
    244 .. function:: complete_statement(sql)
    245 
    246    Returns :const:`True` if the string *sql* contains one or more complete SQL
    247    statements terminated by semicolons. It does not verify that the SQL is
    248    syntactically correct, only that there are no unclosed string literals and the
    249    statement is terminated by a semicolon.
    250 
    251    This can be used to build a shell for SQLite, as in the following example:
    252 
    253 
    254    .. literalinclude:: ../includes/sqlite3/complete_statement.py
    255 
    256 
    257 .. function:: enable_callback_tracebacks(flag)
    258 
    259    By default you will not get any tracebacks in user-defined functions,
    260    aggregates, converters, authorizer callbacks etc. If you want to debug them,
    261    you can call this function with *flag* set to ``True``. Afterwards, you will
    262    get tracebacks from callbacks on ``sys.stderr``. Use :const:`False` to
    263    disable the feature again.
    264 
    265 
    266 .. _sqlite3-connection-objects:
    267 
    268 Connection Objects
    269 ------------------
    270 
    271 .. class:: Connection
    272 
    273    A SQLite database connection has the following attributes and methods:
    274 
    275    .. attribute:: isolation_level
    276 
    277       Get or set the current isolation level. :const:`None` for autocommit mode or
    278       one of "DEFERRED", "IMMEDIATE" or "EXCLUSIVE". See section
    279       :ref:`sqlite3-controlling-transactions` for a more detailed explanation.
    280 
    281    .. attribute:: in_transaction
    282 
    283       :const:`True` if a transaction is active (there are uncommitted changes),
    284       :const:`False` otherwise.  Read-only attribute.
    285 
    286       .. versionadded:: 3.2
    287 
    288    .. method:: cursor(factory=Cursor)
    289 
    290       The cursor method accepts a single optional parameter *factory*. If
    291       supplied, this must be a callable returning an instance of :class:`Cursor`
    292       or its subclasses.
    293 
    294    .. method:: commit()
    295 
    296       This method commits the current transaction. If you don't call this method,
    297       anything you did since the last call to ``commit()`` is not visible from
    298       other database connections. If you wonder why you don't see the data you've
    299       written to the database, please check you didn't forget to call this method.
    300 
    301    .. method:: rollback()
    302 
    303       This method rolls back any changes to the database since the last call to
    304       :meth:`commit`.
    305 
    306    .. method:: close()
    307 
    308       This closes the database connection. Note that this does not automatically
    309       call :meth:`commit`. If you just close your database connection without
    310       calling :meth:`commit` first, your changes will be lost!
    311 
    312    .. method:: execute(sql[, parameters])
    313 
    314       This is a nonstandard shortcut that creates a cursor object by calling
    315       the :meth:`~Connection.cursor` method, calls the cursor's
    316       :meth:`~Cursor.execute` method with the *parameters* given, and returns
    317       the cursor.
    318 
    319    .. method:: executemany(sql[, parameters])
    320 
    321       This is a nonstandard shortcut that creates a cursor object by
    322       calling the :meth:`~Connection.cursor` method, calls the cursor's
    323       :meth:`~Cursor.executemany` method with the *parameters* given, and
    324       returns the cursor.
    325 
    326    .. method:: executescript(sql_script)
    327 
    328       This is a nonstandard shortcut that creates a cursor object by
    329       calling the :meth:`~Connection.cursor` method, calls the cursor's
    330       :meth:`~Cursor.executescript` method with the given *sql_script*, and
    331       returns the cursor.
    332 
    333    .. method:: create_function(name, num_params, func)
    334 
    335       Creates a user-defined function that you can later use from within SQL
    336       statements under the function name *name*. *num_params* is the number of
    337       parameters the function accepts (if *num_params* is -1, the function may
    338       take any number of arguments), and *func* is a Python callable that is
    339       called as the SQL function.
    340 
    341       The function can return any of the types supported by SQLite: bytes, str, int,
    342       float and ``None``.
    343 
    344       Example:
    345 
    346       .. literalinclude:: ../includes/sqlite3/md5func.py
    347 
    348 
    349    .. method:: create_aggregate(name, num_params, aggregate_class)
    350 
    351       Creates a user-defined aggregate function.
    352 
    353       The aggregate class must implement a ``step`` method, which accepts the number
    354       of parameters *num_params* (if *num_params* is -1, the function may take
    355       any number of arguments), and a ``finalize`` method which will return the
    356       final result of the aggregate.
    357 
    358       The ``finalize`` method can return any of the types supported by SQLite:
    359       bytes, str, int, float and ``None``.
    360 
    361       Example:
    362 
    363       .. literalinclude:: ../includes/sqlite3/mysumaggr.py
    364 
    365 
    366    .. method:: create_collation(name, callable)
    367 
    368       Creates a collation with the specified *name* and *callable*. The callable will
    369       be passed two string arguments. It should return -1 if the first is ordered
    370       lower than the second, 0 if they are ordered equal and 1 if the first is ordered
    371       higher than the second.  Note that this controls sorting (ORDER BY in SQL) so
    372       your comparisons don't affect other SQL operations.
    373 
    374       Note that the callable will get its parameters as Python bytestrings, which will
    375       normally be encoded in UTF-8.
    376 
    377       The following example shows a custom collation that sorts "the wrong way":
    378 
    379       .. literalinclude:: ../includes/sqlite3/collation_reverse.py
    380 
    381       To remove a collation, call ``create_collation`` with ``None`` as callable::
    382 
    383          con.create_collation("reverse", None)
    384 
    385 
    386    .. method:: interrupt()
    387 
    388       You can call this method from a different thread to abort any queries that might
    389       be executing on the connection. The query will then abort and the caller will
    390       get an exception.
    391 
    392 
    393    .. method:: set_authorizer(authorizer_callback)
    394 
    395       This routine registers a callback. The callback is invoked for each attempt to
    396       access a column of a table in the database. The callback should return
    397       :const:`SQLITE_OK` if access is allowed, :const:`SQLITE_DENY` if the entire SQL
    398       statement should be aborted with an error and :const:`SQLITE_IGNORE` if the
    399       column should be treated as a NULL value. These constants are available in the
    400       :mod:`sqlite3` module.
    401 
    402       The first argument to the callback signifies what kind of operation is to be
    403       authorized. The second and third argument will be arguments or :const:`None`
    404       depending on the first argument. The 4th argument is the name of the database
    405       ("main", "temp", etc.) if applicable. The 5th argument is the name of the
    406       inner-most trigger or view that is responsible for the access attempt or
    407       :const:`None` if this access attempt is directly from input SQL code.
    408 
    409       Please consult the SQLite documentation about the possible values for the first
    410       argument and the meaning of the second and third argument depending on the first
    411       one. All necessary constants are available in the :mod:`sqlite3` module.
    412 
    413 
    414    .. method:: set_progress_handler(handler, n)
    415 
    416       This routine registers a callback. The callback is invoked for every *n*
    417       instructions of the SQLite virtual machine. This is useful if you want to
    418       get called from SQLite during long-running operations, for example to update
    419       a GUI.
    420 
    421       If you want to clear any previously installed progress handler, call the
    422       method with :const:`None` for *handler*.
    423 
    424 
    425    .. method:: set_trace_callback(trace_callback)
    426 
    427       Registers *trace_callback* to be called for each SQL statement that is
    428       actually executed by the SQLite backend.
    429 
    430       The only argument passed to the callback is the statement (as string) that
    431       is being executed. The return value of the callback is ignored. Note that
    432       the backend does not only run statements passed to the :meth:`Cursor.execute`
    433       methods.  Other sources include the transaction management of the Python
    434       module and the execution of triggers defined in the current database.
    435 
    436       Passing :const:`None` as *trace_callback* will disable the trace callback.
    437 
    438       .. versionadded:: 3.3
    439 
    440 
    441    .. method:: enable_load_extension(enabled)
    442 
    443       This routine allows/disallows the SQLite engine to load SQLite extensions
    444       from shared libraries.  SQLite extensions can define new functions,
    445       aggregates or whole new virtual table implementations.  One well-known
    446       extension is the fulltext-search extension distributed with SQLite.
    447 
    448       Loadable extensions are disabled by default. See [#f1]_.
    449 
    450       .. versionadded:: 3.2
    451 
    452       .. literalinclude:: ../includes/sqlite3/load_extension.py
    453 
    454    .. method:: load_extension(path)
    455 
    456       This routine loads a SQLite extension from a shared library.  You have to
    457       enable extension loading with :meth:`enable_load_extension` before you can
    458       use this routine.
    459 
    460       Loadable extensions are disabled by default. See [#f1]_.
    461 
    462       .. versionadded:: 3.2
    463 
    464    .. attribute:: row_factory
    465 
    466       You can change this attribute to a callable that accepts the cursor and the
    467       original row as a tuple and will return the real result row.  This way, you can
    468       implement more advanced ways of returning results, such  as returning an object
    469       that can also access columns by name.
    470 
    471       Example:
    472 
    473       .. literalinclude:: ../includes/sqlite3/row_factory.py
    474 
    475       If returning a tuple doesn't suffice and you want name-based access to
    476       columns, you should consider setting :attr:`row_factory` to the
    477       highly-optimized :class:`sqlite3.Row` type. :class:`Row` provides both
    478       index-based and case-insensitive name-based access to columns with almost no
    479       memory overhead. It will probably be better than your own custom
    480       dictionary-based approach or even a db_row based solution.
    481 
    482       .. XXX what's a db_row-based solution?
    483 
    484 
    485    .. attribute:: text_factory
    486 
    487       Using this attribute you can control what objects are returned for the ``TEXT``
    488       data type. By default, this attribute is set to :class:`str` and the
    489       :mod:`sqlite3` module will return Unicode objects for ``TEXT``. If you want to
    490       return bytestrings instead, you can set it to :class:`bytes`.
    491 
    492       You can also set it to any other callable that accepts a single bytestring
    493       parameter and returns the resulting object.
    494 
    495       See the following example code for illustration:
    496 
    497       .. literalinclude:: ../includes/sqlite3/text_factory.py
    498 
    499 
    500    .. attribute:: total_changes
    501 
    502       Returns the total number of database rows that have been modified, inserted, or
    503       deleted since the database connection was opened.
    504 
    505 
    506    .. method:: iterdump
    507 
    508       Returns an iterator to dump the database in an SQL text format.  Useful when
    509       saving an in-memory database for later restoration.  This function provides
    510       the same capabilities as the :kbd:`.dump` command in the :program:`sqlite3`
    511       shell.
    512 
    513       Example::
    514 
    515          # Convert file existing_db.db to SQL dump file dump.sql
    516          import sqlite3
    517 
    518          con = sqlite3.connect('existing_db.db')
    519          with open('dump.sql', 'w') as f:
    520              for line in con.iterdump():
    521                  f.write('%s\n' % line)
    522 
    523 
    524 .. _sqlite3-cursor-objects:
    525 
    526 Cursor Objects
    527 --------------
    528 
    529 .. class:: Cursor
    530 
    531    A :class:`Cursor` instance has the following attributes and methods.
    532 
    533    .. method:: execute(sql[, parameters])
    534 
    535       Executes an SQL statement. The SQL statement may be parameterized (i. e.
    536       placeholders instead of SQL literals). The :mod:`sqlite3` module supports two
    537       kinds of placeholders: question marks (qmark style) and named placeholders
    538       (named style).
    539 
    540       Here's an example of both styles:
    541 
    542       .. literalinclude:: ../includes/sqlite3/execute_1.py
    543 
    544       :meth:`execute` will only execute a single SQL statement. If you try to execute
    545       more than one statement with it, it will raise a :exc:`.Warning`. Use
    546       :meth:`executescript` if you want to execute multiple SQL statements with one
    547       call.
    548 
    549 
    550    .. method:: executemany(sql, seq_of_parameters)
    551 
    552       Executes an SQL command against all parameter sequences or mappings found in
    553       the sequence *seq_of_parameters*.  The :mod:`sqlite3` module also allows
    554       using an :term:`iterator` yielding parameters instead of a sequence.
    555 
    556       .. literalinclude:: ../includes/sqlite3/executemany_1.py
    557 
    558       Here's a shorter example using a :term:`generator`:
    559 
    560       .. literalinclude:: ../includes/sqlite3/executemany_2.py
    561 
    562 
    563    .. method:: executescript(sql_script)
    564 
    565       This is a nonstandard convenience method for executing multiple SQL statements
    566       at once. It issues a ``COMMIT`` statement first, then executes the SQL script it
    567       gets as a parameter.
    568 
    569       *sql_script* can be an instance of :class:`str`.
    570 
    571       Example:
    572 
    573       .. literalinclude:: ../includes/sqlite3/executescript.py
    574 
    575 
    576    .. method:: fetchone()
    577 
    578       Fetches the next row of a query result set, returning a single sequence,
    579       or :const:`None` when no more data is available.
    580 
    581 
    582    .. method:: fetchmany(size=cursor.arraysize)
    583 
    584       Fetches the next set of rows of a query result, returning a list.  An empty
    585       list is returned when no more rows are available.
    586 
    587       The number of rows to fetch per call is specified by the *size* parameter.
    588       If it is not given, the cursor's arraysize determines the number of rows
    589       to be fetched. The method should try to fetch as many rows as indicated by
    590       the size parameter. If this is not possible due to the specified number of
    591       rows not being available, fewer rows may be returned.
    592 
    593       Note there are performance considerations involved with the *size* parameter.
    594       For optimal performance, it is usually best to use the arraysize attribute.
    595       If the *size* parameter is used, then it is best for it to retain the same
    596       value from one :meth:`fetchmany` call to the next.
    597 
    598    .. method:: fetchall()
    599 
    600       Fetches all (remaining) rows of a query result, returning a list.  Note that
    601       the cursor's arraysize attribute can affect the performance of this operation.
    602       An empty list is returned when no rows are available.
    603 
    604    .. method:: close()
    605 
    606       Close the cursor now (rather than whenever ``__del__`` is called).
    607 
    608       The cursor will be unusable from this point forward; a :exc:`ProgrammingError`
    609       exception will be raised if any operation is attempted with the cursor.
    610 
    611    .. attribute:: rowcount
    612 
    613       Although the :class:`Cursor` class of the :mod:`sqlite3` module implements this
    614       attribute, the database engine's own support for the determination of "rows
    615       affected"/"rows selected" is quirky.
    616 
    617       For :meth:`executemany` statements, the number of modifications are summed up
    618       into :attr:`rowcount`.
    619 
    620       As required by the Python DB API Spec, the :attr:`rowcount` attribute "is -1 in
    621       case no ``executeXX()`` has been performed on the cursor or the rowcount of the
    622       last operation is not determinable by the interface". This includes ``SELECT``
    623       statements because we cannot determine the number of rows a query produced
    624       until all rows were fetched.
    625 
    626       With SQLite versions before 3.6.5, :attr:`rowcount` is set to 0 if
    627       you make a ``DELETE FROM table`` without any condition.
    628 
    629    .. attribute:: lastrowid
    630 
    631       This read-only attribute provides the rowid of the last modified row. It is
    632       only set if you issued an ``INSERT`` or a ``REPLACE`` statement using the
    633       :meth:`execute` method.  For operations other than ``INSERT`` or
    634       ``REPLACE`` or when :meth:`executemany` is called, :attr:`lastrowid` is
    635       set to :const:`None`.
    636 
    637       If the ``INSERT`` or ``REPLACE`` statement failed to insert the previous
    638       successful rowid is returned.
    639 
    640       .. versionchanged:: 3.6
    641          Added support for the ``REPLACE`` statement.
    642 
    643    .. attribute:: description
    644 
    645       This read-only attribute provides the column names of the last query. To
    646       remain compatible with the Python DB API, it returns a 7-tuple for each
    647       column where the last six items of each tuple are :const:`None`.
    648 
    649       It is set for ``SELECT`` statements without any matching rows as well.
    650 
    651    .. attribute:: connection
    652 
    653       This read-only attribute provides the SQLite database :class:`Connection`
    654       used by the :class:`Cursor` object.  A :class:`Cursor` object created by
    655       calling :meth:`con.cursor() <Connection.cursor>` will have a
    656       :attr:`connection` attribute that refers to *con*::
    657 
    658          >>> con = sqlite3.connect(":memory:")
    659          >>> cur = con.cursor()
    660          >>> cur.connection == con
    661          True
    662 
    663 .. _sqlite3-row-objects:
    664 
    665 Row Objects
    666 -----------
    667 
    668 .. class:: Row
    669 
    670    A :class:`Row` instance serves as a highly optimized
    671    :attr:`~Connection.row_factory` for :class:`Connection` objects.
    672    It tries to mimic a tuple in most of its features.
    673 
    674    It supports mapping access by column name and index, iteration,
    675    representation, equality testing and :func:`len`.
    676 
    677    If two :class:`Row` objects have exactly the same columns and their
    678    members are equal, they compare equal.
    679 
    680    .. method:: keys
    681 
    682       This method returns a list of column names. Immediately after a query,
    683       it is the first member of each tuple in :attr:`Cursor.description`.
    684 
    685    .. versionchanged:: 3.5
    686       Added support of slicing.
    687 
    688 Let's assume we initialize a table as in the example given above::
    689 
    690    conn = sqlite3.connect(":memory:")
    691    c = conn.cursor()
    692    c.execute('''create table stocks
    693    (date text, trans text, symbol text,
    694     qty real, price real)''')
    695    c.execute("""insert into stocks
    696              values ('2006-01-05','BUY','RHAT',100,35.14)""")
    697    conn.commit()
    698    c.close()
    699 
    700 Now we plug :class:`Row` in::
    701 
    702    >>> conn.row_factory = sqlite3.Row
    703    >>> c = conn.cursor()
    704    >>> c.execute('select * from stocks')
    705    <sqlite3.Cursor object at 0x7f4e7dd8fa80>
    706    >>> r = c.fetchone()
    707    >>> type(r)
    708    <class 'sqlite3.Row'>
    709    >>> tuple(r)
    710    ('2006-01-05', 'BUY', 'RHAT', 100.0, 35.14)
    711    >>> len(r)
    712    5
    713    >>> r[2]
    714    'RHAT'
    715    >>> r.keys()
    716    ['date', 'trans', 'symbol', 'qty', 'price']
    717    >>> r['qty']
    718    100.0
    719    >>> for member in r:
    720    ...     print(member)
    721    ...
    722    2006-01-05
    723    BUY
    724    RHAT
    725    100.0
    726    35.14
    727 
    728 
    729 .. _sqlite3-exceptions:
    730 
    731 Exceptions
    732 ----------
    733 
    734 .. exception:: Warning
    735 
    736    A subclass of :exc:`Exception`.
    737 
    738 .. exception:: Error
    739 
    740    The base class of the other exceptions in this module.  It is a subclass
    741    of :exc:`Exception`.
    742 
    743 .. exception:: DatabaseError
    744 
    745    Exception raised for errors that are related to the database.
    746 
    747 .. exception:: IntegrityError
    748 
    749    Exception raised when the relational integrity of the database is affected,
    750    e.g. a foreign key check fails.  It is a subclass of :exc:`DatabaseError`.
    751 
    752 .. exception:: ProgrammingError
    753 
    754    Exception raised for programming errors, e.g. table not found or already
    755    exists, syntax error in the SQL statement, wrong number of parameters
    756    specified, etc.  It is a subclass of :exc:`DatabaseError`.
    757 
    758 
    759 .. _sqlite3-types:
    760 
    761 SQLite and Python types
    762 -----------------------
    763 
    764 
    765 Introduction
    766 ^^^^^^^^^^^^
    767 
    768 SQLite natively supports the following types: ``NULL``, ``INTEGER``,
    769 ``REAL``, ``TEXT``, ``BLOB``.
    770 
    771 The following Python types can thus be sent to SQLite without any problem:
    772 
    773 +-------------------------------+-------------+
    774 | Python type                   | SQLite type |
    775 +===============================+=============+
    776 | :const:`None`                 | ``NULL``    |
    777 +-------------------------------+-------------+
    778 | :class:`int`                  | ``INTEGER`` |
    779 +-------------------------------+-------------+
    780 | :class:`float`                | ``REAL``    |
    781 +-------------------------------+-------------+
    782 | :class:`str`                  | ``TEXT``    |
    783 +-------------------------------+-------------+
    784 | :class:`bytes`                | ``BLOB``    |
    785 +-------------------------------+-------------+
    786 
    787 
    788 This is how SQLite types are converted to Python types by default:
    789 
    790 +-------------+----------------------------------------------+
    791 | SQLite type | Python type                                  |
    792 +=============+==============================================+
    793 | ``NULL``    | :const:`None`                                |
    794 +-------------+----------------------------------------------+
    795 | ``INTEGER`` | :class:`int`                                 |
    796 +-------------+----------------------------------------------+
    797 | ``REAL``    | :class:`float`                               |
    798 +-------------+----------------------------------------------+
    799 | ``TEXT``    | depends on :attr:`~Connection.text_factory`, |
    800 |             | :class:`str` by default                      |
    801 +-------------+----------------------------------------------+
    802 | ``BLOB``    | :class:`bytes`                               |
    803 +-------------+----------------------------------------------+
    804 
    805 The type system of the :mod:`sqlite3` module is extensible in two ways: you can
    806 store additional Python types in a SQLite database via object adaptation, and
    807 you can let the :mod:`sqlite3` module convert SQLite types to different Python
    808 types via converters.
    809 
    810 
    811 Using adapters to store additional Python types in SQLite databases
    812 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    813 
    814 As described before, SQLite supports only a limited set of types natively. To
    815 use other Python types with SQLite, you must **adapt** them to one of the
    816 sqlite3 module's supported types for SQLite: one of NoneType, int, float,
    817 str, bytes.
    818 
    819 There are two ways to enable the :mod:`sqlite3` module to adapt a custom Python
    820 type to one of the supported ones.
    821 
    822 
    823 Letting your object adapt itself
    824 """"""""""""""""""""""""""""""""
    825 
    826 This is a good approach if you write the class yourself. Let's suppose you have
    827 a class like this::
    828 
    829    class Point:
    830        def __init__(self, x, y):
    831            self.x, self.y = x, y
    832 
    833 Now you want to store the point in a single SQLite column.  First you'll have to
    834 choose one of the supported types first to be used for representing the point.
    835 Let's just use str and separate the coordinates using a semicolon. Then you need
    836 to give your class a method ``__conform__(self, protocol)`` which must return
    837 the converted value. The parameter *protocol* will be :class:`PrepareProtocol`.
    838 
    839 .. literalinclude:: ../includes/sqlite3/adapter_point_1.py
    840 
    841 
    842 Registering an adapter callable
    843 """""""""""""""""""""""""""""""
    844 
    845 The other possibility is to create a function that converts the type to the
    846 string representation and register the function with :meth:`register_adapter`.
    847 
    848 .. literalinclude:: ../includes/sqlite3/adapter_point_2.py
    849 
    850 The :mod:`sqlite3` module has two default adapters for Python's built-in
    851 :class:`datetime.date` and :class:`datetime.datetime` types.  Now let's suppose
    852 we want to store :class:`datetime.datetime` objects not in ISO representation,
    853 but as a Unix timestamp.
    854 
    855 .. literalinclude:: ../includes/sqlite3/adapter_datetime.py
    856 
    857 
    858 Converting SQLite values to custom Python types
    859 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    860 
    861 Writing an adapter lets you send custom Python types to SQLite. But to make it
    862 really useful we need to make the Python to SQLite to Python roundtrip work.
    863 
    864 Enter converters.
    865 
    866 Let's go back to the :class:`Point` class. We stored the x and y coordinates
    867 separated via semicolons as strings in SQLite.
    868 
    869 First, we'll define a converter function that accepts the string as a parameter
    870 and constructs a :class:`Point` object from it.
    871 
    872 .. note::
    873 
    874    Converter functions **always** get called with a :class:`bytes` object, no
    875    matter under which data type you sent the value to SQLite.
    876 
    877 ::
    878 
    879    def convert_point(s):
    880        x, y = map(float, s.split(b";"))
    881        return Point(x, y)
    882 
    883 Now you need to make the :mod:`sqlite3` module know that what you select from
    884 the database is actually a point. There are two ways of doing this:
    885 
    886 * Implicitly via the declared type
    887 
    888 * Explicitly via the column name
    889 
    890 Both ways are described in section :ref:`sqlite3-module-contents`, in the entries
    891 for the constants :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES`.
    892 
    893 The following example illustrates both approaches.
    894 
    895 .. literalinclude:: ../includes/sqlite3/converter_point.py
    896 
    897 
    898 Default adapters and converters
    899 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    900 
    901 There are default adapters for the date and datetime types in the datetime
    902 module. They will be sent as ISO dates/ISO timestamps to SQLite.
    903 
    904 The default converters are registered under the name "date" for
    905 :class:`datetime.date` and under the name "timestamp" for
    906 :class:`datetime.datetime`.
    907 
    908 This way, you can use date/timestamps from Python without any additional
    909 fiddling in most cases. The format of the adapters is also compatible with the
    910 experimental SQLite date/time functions.
    911 
    912 The following example demonstrates this.
    913 
    914 .. literalinclude:: ../includes/sqlite3/pysqlite_datetime.py
    915 
    916 If a timestamp stored in SQLite has a fractional part longer than 6
    917 numbers, its value will be truncated to microsecond precision by the
    918 timestamp converter.
    919 
    920 
    921 .. _sqlite3-controlling-transactions:
    922 
    923 Controlling Transactions
    924 ------------------------
    925 
    926 By default, the :mod:`sqlite3` module opens transactions implicitly before a
    927 Data Modification Language (DML)  statement (i.e.
    928 ``INSERT``/``UPDATE``/``DELETE``/``REPLACE``).
    929 
    930 You can control which kind of ``BEGIN`` statements sqlite3 implicitly executes
    931 (or none at all) via the *isolation_level* parameter to the :func:`connect`
    932 call, or via the :attr:`isolation_level` property of connections.
    933 
    934 If you want **autocommit mode**, then set :attr:`isolation_level` to ``None``.
    935 
    936 Otherwise leave it at its default, which will result in a plain "BEGIN"
    937 statement, or set it to one of SQLite's supported isolation levels: "DEFERRED",
    938 "IMMEDIATE" or "EXCLUSIVE".
    939 
    940 The current transaction state is exposed through the
    941 :attr:`Connection.in_transaction` attribute of the connection object.
    942 
    943 .. versionchanged:: 3.6
    944    :mod:`sqlite3` used to implicitly commit an open transaction before DDL
    945    statements.  This is no longer the case.
    946 
    947 
    948 Using :mod:`sqlite3` efficiently
    949 --------------------------------
    950 
    951 
    952 Using shortcut methods
    953 ^^^^^^^^^^^^^^^^^^^^^^
    954 
    955 Using the nonstandard :meth:`execute`, :meth:`executemany` and
    956 :meth:`executescript` methods of the :class:`Connection` object, your code can
    957 be written more concisely because you don't have to create the (often
    958 superfluous) :class:`Cursor` objects explicitly. Instead, the :class:`Cursor`
    959 objects are created implicitly and these shortcut methods return the cursor
    960 objects. This way, you can execute a ``SELECT`` statement and iterate over it
    961 directly using only a single call on the :class:`Connection` object.
    962 
    963 .. literalinclude:: ../includes/sqlite3/shortcut_methods.py
    964 
    965 
    966 Accessing columns by name instead of by index
    967 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    968 
    969 One useful feature of the :mod:`sqlite3` module is the built-in
    970 :class:`sqlite3.Row` class designed to be used as a row factory.
    971 
    972 Rows wrapped with this class can be accessed both by index (like tuples) and
    973 case-insensitively by name:
    974 
    975 .. literalinclude:: ../includes/sqlite3/rowclass.py
    976 
    977 
    978 Using the connection as a context manager
    979 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    980 
    981 Connection objects can be used as context managers
    982 that automatically commit or rollback transactions.  In the event of an
    983 exception, the transaction is rolled back; otherwise, the transaction is
    984 committed:
    985 
    986 .. literalinclude:: ../includes/sqlite3/ctx_manager.py
    987 
    988 
    989 Common issues
    990 -------------
    991 
    992 Multithreading
    993 ^^^^^^^^^^^^^^
    994 
    995 Older SQLite versions had issues with sharing connections between threads.
    996 That's why the Python module disallows sharing connections and cursors between
    997 threads. If you still try to do so, you will get an exception at runtime.
    998 
    999 The only exception is calling the :meth:`~Connection.interrupt` method, which
   1000 only makes sense to call from a different thread.
   1001 
   1002 .. rubric:: Footnotes
   1003 
   1004 .. [#f1] The sqlite3 module is not built with loadable extension support by
   1005    default, because some platforms (notably Mac OS X) have SQLite
   1006    libraries which are compiled without this feature. To get loadable
   1007    extension support, you must pass --enable-loadable-sqlite-extensions to
   1008    configure.
   1009