Kaydet (Commit) 583b9fc4 authored tarafından jtiai's avatar jtiai Kaydeden (comit) Tim Graham

Fixed #29757 -- Documented Oracle DSN and Easy Connect options.

üst da92ec79
...@@ -819,6 +819,24 @@ You should either supply both :setting:`HOST` and :setting:`PORT`, or leave ...@@ -819,6 +819,24 @@ You should either supply both :setting:`HOST` and :setting:`PORT`, or leave
both as empty strings. Django will use a different connect descriptor depending both as empty strings. Django will use a different connect descriptor depending
on that choice. on that choice.
Full DSN and Easy Connect
~~~~~~~~~~~~~~~~~~~~~~~~~
A Full DSN or Easy Connect string can be used in :setting:`NAME` if both
:setting:`HOST` and :setting:`PORT` are empty. This format is required when
using RAC or pluggable databases without ``tnsnames.ora``, for example.
Example of an Easy Connect string::
'NAME': 'localhost:1521/orclpdb1',
Example of a full DSN string::
'NAME': (
'(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))'
'(CONNECT_DATA=(SERVICE_NAME=orclpdb1)))'
),
Threaded option Threaded option
---------------- ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment