Author: ikelly
Date: 2010-11-19 17:19:23 -0600 (Fri, 19 Nov 2010)
New Revision: 14630

Modified:
   django/trunk/docs/ref/databases.txt
Log:
Fixed #13351: Added documentation about the cx_Oracle 'threaded' option to the 
oracle backend notes.

Thanks to Skaffen for the suggestion.

Modified: django/trunk/docs/ref/databases.txt
===================================================================
--- django/trunk/docs/ref/databases.txt 2010-11-19 23:04:48 UTC (rev 14629)
+++ django/trunk/docs/ref/databases.txt 2010-11-19 23:19:23 UTC (rev 14630)
@@ -549,7 +549,7 @@
             'USER': 'a_user',
             'PASSWORD': 'a_password',
             'HOST': '',
-            'PORT': ''     ,
+            'PORT': '',
         }
     }
 
@@ -572,6 +572,19 @@
 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
 ------------------
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to