@@ -83,12 +83,11 @@ Defaults Attributes
8383 This can help avoid issues with converting numbers from Oracle Database's
8484 decimal format to Python's binary format.
8585
86- An output type handler such as previously required in cx_Oracle (see
87- `return_numbers_as_decimals.py <https://github.com/oracle/python-cx_Oracle/
88- blob/main/samples/return_numbers_as_decimals.py> `__) can alternatively be
89- used to adjust the returned type. If a type handler exists and returns a
90- variable (that is, ``cursor.var(...) ``), then that return variable is used.
91- If the type handler returns *None *, then the value of
86+ An output type handler such as previously required in the obsolete
87+ cx_Oracle driver can alternatively be used to adjust the returned type. If
88+ a type handler exists and returns a variable (that is,
89+ ``cursor.var(...) ``), then that return variable is used. If the type
90+ handler returns *None *, then the value of
9291 ``oracledb.defaults.fetch_decimals `` is used to determine whether to return
9392 ``decimal.Decimal `` values.
9493
@@ -102,13 +101,11 @@ Defaults Attributes
102101 LOBs are larger than 1 GB, then this attribute should be set to *True * and
103102 the LOBs should be streamed. See :ref: `lobdata `.
104103
105- An output type handler such as the one previously required in cx_Oracle
106- (see `return_lobs_as_strings.py <https://github.com/oracle/
107- python-cx_Oracle/blob/main/samples/return_lobs_as_strings.py> `__) can
108- alternatively be used to adjust the returned type. If a type handler
109- exists and returns a variable (that is, `cursor.var(...) `), then that
110- return variable is used. If the type handler returns *None *, then the value
111- of ``oracledb.defaults.fetch_lobs `` is used.
104+ An output type handler such as the one previously required in the obsolete
105+ cx_Oracle driver can alternatively be used to adjust the returned type. If
106+ a type handler exists and returns a variable (that is, `cursor.var(...) `),
107+ then that return variable is used. If the type handler returns *None *, then
108+ the value of ``oracledb.defaults.fetch_lobs `` is used.
112109
113110 The value of ``oracledb.defaults.fetch_lobs `` does not affect LOBs returned
114111 as OUT binds.
0 commit comments