Kaydet (Commit) 0b637596 authored tarafından Marcin Niemira's avatar Marcin Niemira Kaydeden (comit) Berker Peksag

bpo-34061: Document sqlite3.NotSupportedError (GH-8172)

(cherry picked from commit bc9aa813)
Co-authored-by: 's avatarMarcin Niemira <marcin@niemira.net>
üst a410f9f6
......@@ -828,6 +828,13 @@ Exceptions
disconnect occurs, the data source name is not found, a transaction could
not be processed, etc. It is a subclass of :exc:`DatabaseError`.
.. exception:: NotSupportedError
Exception raised in case a method or database API was used which is not
supported by the database, e.g. calling the :meth:`~Connection.rollback`
method on a connection that does not support transaction or has
transactions turned off. It is a subclass of :exc:`DatabaseError`.
.. _sqlite3-types:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment