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
Copy file name to clipboardExpand all lines: doc/src/api_manual/connection.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1159,9 +1159,9 @@ Connection Methods
1159
1159
- ``dbType``: one of the :ref:`Oracle Database Type Constant <oracledbconstantsdbtype>` values.
1160
1160
- ``dbTypeClass``: The class associated with the database type. This is only set if the database type is an object type.
1161
1161
- ``dbTypeName``: The name of the database type, such as “NUMBER” or “VARCHAR2”. For object types, this will be the object name.
1162
-
- ``domainName``: The name of the `SQL domain <https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/create-domain.html#GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__ associated with the fetched column. If the column does not have a SQL domain, this property value is `undefined`. SQL domains are supported from Oracle Database 23ai onwards. If node-oracledb Thick mode is used, Oracle Client 23ai is also required.
1162
+
- ``domainName``: The name of the `data use case domain <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__ associated with the fetched column. If the column does not have a data use case domain, this property value is `undefined`. `Data use case domains<https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-4743FDE1-7C6E-471B-BC9D-442383CCA2F9>`__ are supported from Oracle Database 23ai onwards. If node-oracledb Thick mode is used, Oracle Client 23ai is also required.
1163
1163
1164
-
- ``domainSchema``: The schema name of the `SQL domain <https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/create-domain.html#GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__ associated with the fetched column. If the column does not have a SQL domain, this property value is `undefined`. SQL domains are supported from Oracle Database 23ai onwards. If node-oracledb Thick mode is used, Oracle Client 23ai is also required.
1164
+
- ``domainSchema``: The schema name of the `data use case domain <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__ associated with the fetched column. If the column does not have a data use case domain, this property value is `undefined`. `Data use case domains<https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-4743FDE1-7C6E-471B-BC9D-442383CCA2F9>`__ are supported from Oracle Database 23ai onwards. If node-oracledb Thick mode is used, Oracle Client 23ai is also required.
1165
1165
1166
1166
- ``fetchType``: One of the :ref:`Node-oracledb Type Constant <oracledbconstantsnodbtype>` values.
1167
1167
- ``isJson``: Indicates if the column is known to contain JSON data. This will be ``true`` for JSON columns (from Oracle Database 21c) and for LOB and VARCHAR2 columns where "IS JSON" constraint is enabled (from Oracle Database 19c). This property will be ``false`` for all the other columns. It will also be ``false`` for any column when Oracle Client 18c or earlier is used in Thick mode or the Oracle Database version is earlier than 19c.
Copy file name to clipboardExpand all lines: doc/src/api_manual/oracledb.rst
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1132,8 +1132,8 @@ Each of the configuration properties is described below.
1132
1132
"VARCHAR2".
1133
1133
- ``dbTypeClass``: The class associated with the database type. This is
1134
1134
only set if ``dbType`` is ``oracledb.DB_TYPE_OBJECT``.
1135
-
- ``domainName``: The name of the `SQL domain <https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/create-domain.html#GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__.
1136
-
- ``domainSchema``: The schema name of the `SQL domain <https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/create-domain.html#GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__.
1135
+
- ``domainName``: The name of the `data use case domain <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__.
1136
+
- ``domainSchema``: The schema name of the `data use case domain <https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=GUID-17D3A9C6-D993-4E94-BF6B-CACA56581F41>`__.
1137
1137
- ``isJson``: Indicates if the column is known to contain JSON data.
1138
1138
- ``name``: The name of the column.
1139
1139
- ``nullable``: Indicates whether ``NULL`` values are permitted for this
@@ -1450,8 +1450,8 @@ Each of the configuration properties is described below.
1450
1450
connection has been released back to the pool. The pending connection
1451
1451
request will consume one worker thread.
1452
1452
1453
-
See :ref:`Connecting to Sharded Databases <sharding>` for more
1454
-
information.
1453
+
See :ref:`Connecting to Oracle Globally Distributed Database <sharding>`
1454
+
for more information.
1455
1455
1456
1456
.. note::
1457
1457
@@ -3173,7 +3173,7 @@ Oracledb Methods
3173
3173
- Thick
3174
3174
- .. _getconnectiondbattrsshardingkey:
3175
3175
3176
-
Allows a connection to be established directly to a database shard. See :ref:`Connecting to Sharded Databases<sharding>`.
3176
+
Allows a connection to be established directly to a database shard. See :ref:`Connecting to Oracle Globally Distributed Database<sharding>`.
3177
3177
3178
3178
Array values may be of String type (mapping to VARCHAR2 sharding keys), Number (NUMBER), Date (DATE), or Buffer (RAW). Multiple types may be used in the array. Sharding keys TIMESTAMP type are not supported.
3179
3179
@@ -3189,7 +3189,7 @@ Oracledb Methods
3189
3189
- Thick
3190
3190
- .. _getconnectiondbattrssupershardingkey:
3191
3191
3192
-
Allows a connection to be established directly to a database shard. See :ref:`Connecting to Sharded Databases<sharding>`.
3192
+
Allows a connection to be established directly to a database shard. See :ref:`Connecting to Oracle Globally Distributed Database<sharding>`.
3193
3193
3194
3194
Array values may be of String type (mapping to VARCHAR2 sharding keys), Number (NUMBER), Date (DATE), or Buffer (RAW). Multiple types may be used in the array. Sharding keys TIMESTAMP type are not supported.
Copy file name to clipboardExpand all lines: doc/src/api_manual/pool.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -447,7 +447,7 @@ Pool Methods
447
447
- Description
448
448
* - ``poolAttrs``
449
449
- Object
450
-
- This parameter can contain a ``tag`` property when :ref:`connection tagging <connpooltagging>` is in use. It can also contain :ref:`shardingKey <getconnectiondbattrsshardingkey>` and :ref:`superShardingKey <getconnectiondbattrssupershardingkey>` properties, when using :ref:`database sharding<sharding>`.
450
+
- This parameter can contain a ``tag`` property when :ref:`connection tagging <connpooltagging>` is in use. It can also contain :ref:`shardingKey <getconnectiondbattrsshardingkey>` and :ref:`superShardingKey <getconnectiondbattrssupershardingkey>` properties, when using :ref:`Oracle Globally Distributed Database<sharding>`.
451
451
452
452
When getting connections from heterogeneous pools, this parameter can contain ``user`` (or ``username``) and ``password`` properties for true heterogeneous pool usage, or it can contain a ``user`` property when a pool proxy user is desired.
0 commit comments