Skip to content

Commit 5f5f817

Browse files
Doc updates.
1 parent 4cca485 commit 5f5f817

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

doc/src/release_notes.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Thin Mode Changes
2424
#) Added support for property :attr:`ConnectionPool.max_lifetime_session`
2525
(`issue 410 <https://github.com/oracle/python-oracledb/issues/410>`__).
2626
#) Added parameter :data:`ConnectParams.use_sni` to specify that the TLS SNI
27-
extension should be used to reduce the number of TLS neegotiations that are
27+
extension should be used to reduce the number of TLS negotiations that are
2828
needed to connect to the database.
2929
#) Added parameter :data:`ConnectParams.instance_name` to specify the instance
3030
name to use when connecting to the database. Added support for setting the
@@ -96,7 +96,7 @@ Common Changes
9696
:meth:`AsyncConnection.fetch_df_batches()` to fetch data as DataFrames
9797
compliant with the Python DataFrame Interchange protocol. See
9898
:ref:`dataframeformat`.
99-
#) Added support for Oracle Database 23ai SPARSE vectors.
99+
#) Added support for Oracle Database 23.7 SPARSE vectors.
100100
#) Added support for :ref:`naming and caching connection pools
101101
<connpoolcache>` during creation, and retrieving them later from the
102102
python-oracledb pool cache with :meth:`oracledb.get_pool()`.
@@ -158,6 +158,7 @@ Common Changes
158158
#) Internal change: improve handling of metadata.
159159
#) Internal build tool change: bumped minimum Cython version to 3.0.10 to
160160
avoid bug in earlier versions.
161+
#) Improved test suite and documentation.
161162

162163

163164
oracledb 2.5.1 (December 2024)

doc/src/user_guide/sql_execution.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ the results:
771771
# Adjust arraysize to tune the query fetch performance
772772
odf = connection.fetch_df_all(statement=sql, arraysize=100)
773773
774-
print(odf.odf.column_names())
774+
print(odf.column_names())
775775
print(f"{odf.num_columns()} columns")
776776
print(f"{odf.num_rows()} rows")
777777

0 commit comments

Comments
 (0)