We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe17d35 commit 19c3880Copy full SHA for 19c3880
Doc/library/sqlite3.rst
@@ -2468,9 +2468,9 @@ which implies :pep:`249`-compliant transaction control.
2468
This means:
2469
2470
* :mod:`!sqlite3` ensures that a transaction is always open,
2471
- so :meth:`Connection.commit` and :meth:`Connection.rollback`
2472
- will implicitly open a new transaction immediately after closing
2473
- the pending one.
+ so :func:`connect`, :meth:`Connection.commit`, and :meth:`Connection.rollback`
+ will implicitly open a new transaction
+ (immediately after closing the pending one, for the latter two).
2474
:mod:`!sqlite3` uses ``BEGIN DEFERRED`` statements when opening transactions.
2475
* Transactions should be committed explicitly using :meth:`!commit`.
2476
* Transactions should be rolled back explicitly using :meth:`!rollback`.
0 commit comments