mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Fixes #10020
This commit is contained in:
parent
58d5dbf80b
commit
e0941c5bd2
1 changed files with 11 additions and 0 deletions
|
|
@ -381,6 +381,8 @@ Connection Objects
|
||||||
|
|
||||||
.. literalinclude:: ../includes/sqlite3/load_extension.py
|
.. literalinclude:: ../includes/sqlite3/load_extension.py
|
||||||
|
|
||||||
|
Loadable extensions are disabled by default. See [#f1]_
|
||||||
|
|
||||||
.. method:: Connection.load_extension(path)
|
.. method:: Connection.load_extension(path)
|
||||||
|
|
||||||
This routine loads a SQLite extension from a shared library. You have to
|
This routine loads a SQLite extension from a shared library. You have to
|
||||||
|
|
@ -389,6 +391,8 @@ Connection Objects
|
||||||
|
|
||||||
.. versionadded:: 3.2
|
.. versionadded:: 3.2
|
||||||
|
|
||||||
|
Loadable extensions are disabled by default. See [#f1]_
|
||||||
|
|
||||||
.. attribute:: Connection.row_factory
|
.. attribute:: Connection.row_factory
|
||||||
|
|
||||||
You can change this attribute to a callable that accepts the cursor and the
|
You can change this attribute to a callable that accepts the cursor and the
|
||||||
|
|
@ -880,3 +884,10 @@ threads. If you still try to do so, you will get an exception at runtime.
|
||||||
The only exception is calling the :meth:`~Connection.interrupt` method, which
|
The only exception is calling the :meth:`~Connection.interrupt` method, which
|
||||||
only makes sense to call from a different thread.
|
only makes sense to call from a different thread.
|
||||||
|
|
||||||
|
.. rubric:: Footnotes
|
||||||
|
|
||||||
|
.. [#f1] The sqlite3 module is not built with loadable extension support by
|
||||||
|
default, because some platforms (notably Mac OS X) have SQLite libraries which
|
||||||
|
are compiled without this feature. To get loadable extension support, you must
|
||||||
|
modify setup.py and and remove the line that sets SQLITE_OMIT_LOAD_EXTENSION.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue