Commit 04fec1be authored by Ian Kelly's avatar Ian Kelly
Browse files

[1.2.X] Fixed #13351: Added documentation about the cx_Oracle 'threaded'...

[1.2.X] Fixed #13351: Added documentation about the cx_Oracle 'threaded' option to the oracle backend notes.

Backport of r14630 from trunk.

Thanks to Skaffen for the suggestion.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14632 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 237e9557
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -553,6 +553,19 @@ recognizes the SID ("xe" in this example), then fill in both
You should supply both ``HOST`` and ``PORT``, or leave both
as empty strings.

Threaded option
----------------

If you plan to run Django in a multithreaded environment (e.g. Apache in Windows
using the default MPM module), 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.

Tablespace options
------------------