summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author9r0k <tanyawei1991@gmail.com>2025-04-27 20:16:50 +0800
committerGitHub <noreply@github.com>2025-04-27 14:16:50 +0200
commit3babda775d822232c8438dba8206cd2f3e2dfacc (patch)
tree834eb4bb2d235632296c688bb667d1b3e168e0e3
parentfbdbccf27a7d969a92e6ab8d2b7754e21e69b050 (diff)
Fixed #36346 -- Removed outdated section about the threaded option in Oracle driver.
-rw-r--r--AUTHORS1
-rw-r--r--docs/ref/databases.txt13
2 files changed, 1 insertions, 13 deletions
diff --git a/AUTHORS b/AUTHORS
index b22af9bccb..792a0916d1 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -996,6 +996,7 @@ answer newbie questions, and generally made Django that much better:
Taavi Teska <taaviteska@gmail.com>
Tai Lee <real.human@mrmachine.net>
Takashi Matsuo <matsuo.takashi@gmail.com>
+ Tan Yawei <tanyawei1991@gmail.com>
Tareque Hossain <http://www.codexn.com>
Taylor Mitchell <taylor.mitchell@gmail.com>
tell-k <ffk2005@gmail.com>
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index e5ab0067fe..b5479a9f33 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -1139,19 +1139,6 @@ alternatively set ``"pool"`` to be a dict::
.. _`create_pool()`: https://python-oracledb.readthedocs.io/en/latest/user_guide/connection_handling.html#connection-pooling
-Threaded option
----------------
-
-If you plan to run Django in a multithreaded environment (e.g. Apache using the
-default MPM module on any modern operating system), then you **must** set
-the ``threaded`` option of your Oracle database configuration to ``True``::
-
- "OPTIONS": {
- "threaded": True,
- }
-
-Failure to do this may result in crashes and other odd behavior.
-
INSERT ... RETURNING INTO
-------------------------