1
0
mirror of https://github.com/django/django.git synced 2025-06-01 17:49:12 +00:00

Fixed #36346 -- Removed outdated section about the threaded option in Oracle driver.

This commit is contained in:
9r0k 2025-04-27 20:16:50 +08:00 committed by GitHub
parent fbdbccf27a
commit 3babda775d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 13 deletions

View File

@ -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>

View File

@ -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
-------------------------