Author: ikelly Date: 2010-11-19 17:23:03 -0600 (Fri, 19 Nov 2010) New Revision: 14632
Modified: django/branches/releases/1.2.X/ django/branches/releases/1.2.X/docs/ref/databases.txt Log: [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. Property changes on: django/branches/releases/1.2.X ___________________________________________________________________ Name: svnmerge-integrated - /django/trunk:1-13360,13400,13434,13480,13574,13600,13638,13652,13664,13666,13668,13680,13683,13685,13687-13688,13690,13694,13696,13701-13702,13705,13709,13712,13715,13717,13732,13735,13859,14537,14545,14547 + /django/trunk:1-13360,13400,13434,13480,13574,13600,13638,13652,13664,13666,13668,13680,13683,13685,13687-13688,13690,13694,13696,13701-13702,13705,13709,13712,13715,13717,13732,13735,13859,14537,14545,14547,14630 Modified: django/branches/releases/1.2.X/docs/ref/databases.txt =================================================================== --- django/branches/releases/1.2.X/docs/ref/databases.txt 2010-11-19 23:19:56 UTC (rev 14631) +++ django/branches/releases/1.2.X/docs/ref/databases.txt 2010-11-19 23:23:03 UTC (rev 14632) @@ -530,7 +530,7 @@ 'USER': 'a_user', 'PASSWORD': 'a_password', 'HOST': '', - 'PORT': '' , + 'PORT': '', } } @@ -553,6 +553,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.