We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7874c8 commit 4041565Copy full SHA for 4041565
1 file changed
Doc/library/sqlite3.rst
@@ -771,6 +771,13 @@ Exceptions
771
disconnect occurs, the data source name is not found, a transaction could
772
not be processed, etc. It is a subclass of :exc:`DatabaseError`.
773
774
+.. exception:: NotSupportedError
775
+
776
+ Exception raised in case a method or database API was used which is not
777
+ supported by the database, e.g. calling the :meth:`~Connection.rollback`
778
+ method on a connection that does not support transaction or has
779
+ transactions turned off. It is a subclass of :exc:`DatabaseError`.
780
781
782
.. _sqlite3-types:
783
0 commit comments