You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example the wallet is created for the ``myuser`` schema in the
156
156
directory ``/home/oracle/wallet_dir``. The ``mkstore`` command is available
@@ -690,8 +690,7 @@ the following table.
690
690
- Description
691
691
- Required or Optional
692
692
* - ``auth_type``
693
-
- The authentication type. The value should be the string "ConfigFileAuthentication",
694
-
"InstancePrincipal", "SecurityToken", "SecurityTokenSimple" or "SimpleAuthentication".
693
+
- The authentication type. The value should be the string "ConfigFileAuthentication", "InstancePrincipal", "SecurityToken", "SecurityTokenSimple" or "SimpleAuthentication".
695
694
696
695
With Configuration File Authentication, the location of a configuration file containing the necessary information must be provided. By default, this file is located at */home/username/.oci/config*, unless a custom location is specified during OCI IAM setup.
697
696
@@ -708,8 +707,7 @@ the following table.
708
707
* - ``user``
709
708
- The Oracle Cloud Identifier (OCID) of the user invoking the API. For example, *ocid1.user.oc1..<unique_ID>*.
710
709
711
-
This parameter can be specified when the value of the ``auth_type`` key is "SimpleAuthentication". This is not required when ``auth_type`` is
712
-
"SecurityToken" or "SecurityTokenSimple"
710
+
This parameter can be specified when the value of the ``auth_type`` key is "SimpleAuthentication". This is not required when ``auth_type`` is "SecurityToken" or "SecurityTokenSimple"
Copy file name to clipboardExpand all lines: doc/src/user_guide/initialization.rst
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,15 @@ python-oracledb uses them. Python-oracledb is said to be in 'Thick' mode when
13
13
Oracle Client libraries are used. Both modes have comprehensive functionality
14
14
supporting the Python Database API v2.0 Specification.
15
15
16
+
Most applications can use python-oracledb Thin mode. The common reasons to use
17
+
Thick mode are:
18
+
19
+
- Your Oracle Database is version 11, or older
20
+
- Your database connections require :ref:`Native Network Encryption (NNE) or
21
+
checksumming <nne>`
22
+
- You desire to use :ref:`Application Continuity (AC) or Transparent
23
+
Application Continuity (TAC) <appcont>`
24
+
16
25
All connections in an application use the same mode. See :ref:`vsessconinfo`
17
26
to verify which mode is in use.
18
27
@@ -622,7 +631,7 @@ The common environment variables listed below are supported in python-oracledb.
622
631
* - NLS_LANG
623
632
- Determines the 'national language support' globalization options for python-oracledb.
624
633
625
-
Note that from cx_Oracle 8, the character set component is ignored and only the language and territory components of ``NLS_LANG`` are used. The character set can instead be specified during connection or connection pool creation. See :ref:`globalization`.
634
+
Note that the character set component is ignored and only the language and territory components of ``NLS_LANG`` are used. The character set can instead be specified during connection or connection pool creation. See :ref:`globalization`.
0 commit comments