Docs: add named to the list of styles in the sqlite3.paramstyle attr docs (#99078)

This commit is contained in:
Nick Pope 2022-11-03 23:21:01 +00:00 committed by GitHub
parent 4c4b5ce2e5
commit 016c7d37b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -478,9 +478,10 @@ Module constants
.. note::
The :mod:`!sqlite3` module supports both ``qmark`` and ``numeric`` DB-API
parameter styles, because that is what the underlying SQLite library
supports. However, the DB-API does not allow multiple values for
The :mod:`!sqlite3` module supports ``qmark``, ``numeric``,
and ``named`` DB-API parameter styles,
because that is what the underlying SQLite library supports.
However, the DB-API does not allow multiple values for
the ``paramstyle`` attribute.
.. data:: sqlite_version