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 6ebe1ba commit 1aac9ceCopy full SHA for 1aac9ce
Doc/library/sqlite3.rst
@@ -304,8 +304,10 @@ Module functions
304
:param bool check_same_thread:
305
If ``True`` (default), an exception will be raised if the database connection
306
is used by a thread other than the one that created it.
307
- This may be helpful in particular when SQLite is not in serialized mode
308
- (see :attr:`threadsafety`).
+ If ``False``, the connection may be accessed in multiple threads;
+ write operations may need to be serialized by the user
309
+ to avoid data corruption.
310
+ See :attr:`threadsafety` for more information.
311
312
:param Connection factory:
313
A custom subclass of :class:`Connection` to create the connection with,
0 commit comments