Skip to content

Commit e0efd6f

Browse files
Documentation improvements.
1 parent 253d569 commit e0efd6f

File tree

5 files changed

+37
-29
lines changed

5 files changed

+37
-29
lines changed

doc/src/api_manual/async_connection.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ AsyncConnection Methods
146146

147147
.. note::
148148

149-
The data frame support in python-oracledb 3.0.0 is a pre-release and
150-
may change in the next version.
149+
The data frame support in python-oracledb 3.1 is a pre-release and may
150+
change in a future version.
151151

152152
.. versionadded:: 3.0.0
153153

@@ -174,8 +174,8 @@ AsyncConnection Methods
174174

175175
.. note::
176176

177-
The data frame support in python-oracledb 3.0.0 is a pre-release and
178-
may change in the next version.
177+
The data frame support in python-oracledb 3.1 is a pre-release and may
178+
change in a future version.
179179

180180
.. versionadded:: 3.0.0
181181

doc/src/api_manual/connection.rst

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,18 @@ Connection Methods
146146
:attr:`Cursor.prefetchrows` size is always set to the value of the explicit
147147
or default ``arraysize`` parameter value.
148148

149+
Any LOB fetched must be less than 1 GB.
150+
149151
See :ref:`dataframeformat` for the supported data types and examples.
150152

151153
.. note::
152154

153-
The data frame support in python-oracledb 3.0.0 is a pre-release and
154-
may change in the next version.
155+
The data frame support in python-oracledb 3.1 is a pre-release and may
156+
change in a future version.
157+
158+
.. note::
159+
160+
This method is an extension to the DB API definition.
155161

156162
.. versionadded:: 3.0.0
157163

@@ -174,12 +180,18 @@ Connection Methods
174180
:attr:`Cursor.prefetchrows` sizes are always set to the value of the
175181
explicit or default ``size`` parameter value.
176182

183+
Any LOB fetched must be less than 1 GB.
184+
177185
See :ref:`dataframeformat` for the supported data types and examples.
178186

179187
.. note::
180188

181-
The data frame support in python-oracledb 3.0.0 is a pre-release and
182-
may change in the next version.
189+
The data frame support in python-oracledb 3.1 is a pre-release and may
190+
change in a future version.
191+
192+
.. note::
193+
194+
This method is an extension to the DB API definition.
183195

184196
.. versionadded:: 3.0.0
185197

doc/src/api_manual/dataframe.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ from Oracle Database types to Arrow data types.
1313

1414
.. note::
1515

16-
The data frame support in python-oracledb 3.0.0 is a pre-release and may
17-
change in the next version.
16+
The data frame support in python-oracledb 3.1 is a pre-release and may
17+
change in a future version.
1818

1919
.. _oracledataframeobj:
2020

doc/src/release_notes.rst

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Thin Mode Changes
1919

2020
#) Improved support for :ref:`Oracle Advanced Queuing <aqusermanual>`:
2121

22-
- added support for JSON payloads
23-
- added support for bulk enqueuing and dequeuing
24-
- added support for using AQ with asyncio
22+
- Added support for JSON payloads
23+
- Added support for bulk enqueuing and dequeuing
24+
- Added support for using AQ with asyncio
2525

2626
#) Improved error message when the cryptography package cannot be imported
2727
(`issue 455 <https://github.com/oracle/python-oracledb/issues/455>`__).
@@ -51,23 +51,19 @@ Thick Mode Changes
5151
Common Changes
5252
++++++++++++++
5353

54-
#) Improved the performance and memory management of
55-
:meth:`Connection.fetch_df_all()` and
56-
:meth:`Connection.fetch_df_batches()`:
54+
#) Improvements to data frame fetching with :meth:`Connection.fetch_df_all()`
55+
and :meth:`Connection.fetch_df_batches()`:
5756

58-
- more efficient processing when a significant amount of data is duplicated
57+
- Added support for CLOB, BLOB and RAW data types
58+
- Fixed bug when NUMBER data is fetched that does not have a precision or
59+
scale specified and :attr:`defaults.fetch_decimals` is set to *True*.
60+
- More efficient processing when a significant amount of data is duplicated
5961
from one row to the next
60-
- avoid memory allocation/free cycles for decimal data
61-
- eliminated memory leak if OracleDataFrame is not converted to an external
62+
- Avoid memory allocation/free cycles for decimal data
63+
- Eliminated memory leak if OracleDataFrame is not converted to an external
6264
data frame
63-
- eliminated small memory leak with production of all data frames
64-
65-
#) Added support for CLOB, BLOB and RAW data types in
66-
:meth:`Connection.fetch_df_all()` and :meth:`Connection.fetch_df_batches()`
67-
#) Fixed bug when NUMBER data is fetched with
68-
:meth:`Connection.fetch_df_all()` or :meth:`Connection.fetch_df_batches()`
69-
that does not have precision or scale specified and
70-
:attr:`defaults.fetch_decimals` is set to *True*.
65+
- Eliminated small memory leak with production of each data frame
66+
7167
#) Fixed bug when binding a variable that was previously bound as an output
7268
variable in a DML RETURNING statement.
7369
#) An error message that links to :ref:`documentation <ldapconnections>` on

doc/src/user_guide/sql_execution.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,8 +752,8 @@ in `Apache Parquet <https://parquet.apache.org/>`__ format.
752752

753753
.. note::
754754

755-
The data frame support in python-oracledb 3.0.0 is a pre-release and may
756-
change in the next version.
755+
The data frame support in python-oracledb 3.1 is a pre-release and may
756+
change in a future version.
757757

758758
The method :meth:`Connection.fetch_df_all()` fetches all rows from a query.
759759
The method :meth:`Connection.fetch_df_batches()` implements an iterator for

0 commit comments

Comments
 (0)