Skip to content

Commit 1390bab

Browse files
Documentation improvements.
1 parent efc76ff commit 1390bab

33 files changed

+220
-180
lines changed

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To build the documentation locally:
1515
1. Install Sphinx and the Read the Docs theme using the Python package manager
1616
``pip``, for example:
1717

18-
python -m pip install -r requirements.txt
18+
python -m pip install --upgrade -r requirements.txt
1919

2020
You can alternatively install these from pre-built packages for your
2121
operating system.

doc/src/api_manual/async_connection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AsyncConnection Class
2323

2424
.. note::
2525

26-
AsyncConnection objects are only supported in the python-oracledb Thin
26+
AsyncConnection objects are only supported in python-oracledb Thin
2727
mode.
2828

2929
.. note::

doc/src/api_manual/async_connection_pool.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ AsyncConnectionPool Class
2020

2121
.. note::
2222

23-
AsyncConnectionPool objects are only supported in the python-oracledb
24-
Thin mode.
23+
AsyncConnectionPool objects are only supported in python-oracledb Thin
24+
mode.
2525

2626
.. _asynconnpoolmeth:
2727

doc/src/api_manual/async_cursor.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ AsyncCursor Class
2020

2121
.. note::
2222

23-
AsyncCursor objects are only supported in the python-oracledb Thin
24-
mode.
23+
AsyncCursor objects are only supported in python-oracledb Thin mode.
2524

2625
.. _asynccursormeth:
2726

doc/src/api_manual/async_lob.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ AsyncLOB Class
2121

2222
.. note::
2323

24-
AsyncLOB objects are only supported in the python-oracledb Thin mode.
24+
AsyncLOB objects are only supported in python-oracledb Thin mode.
2525

2626
.. _asynclobmeth:
2727

doc/src/api_manual/connection.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,8 @@ Connection Attributes
422422

423423
.. autoproperty:: Connection.thin
424424

425+
See :ref:`vsessconinfo`.
426+
425427
.. dbapiattributeextension::
426428

427429
.. autoproperty:: Connection.transaction_in_progress

doc/src/api_manual/connection_pool.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ ConnectionPool Class
1717
SessionPool came from the `Oracle Call Interface (OCI) session pool
1818
<https://www.oracle.com/pls/topic/
1919
lookup?ctx=dblatest&id=GUID-F9662FFB-EAEF-495C-96FC-49C6D1D9625C>`__. This
20-
implementation is only used in the python-oracledb Thick mode and is not
21-
available in the Thin mode).
20+
implementation is only used in python-oracledb Thick mode and is not
21+
available in Thin mode).
2222

2323
.. dbapiobjectextension::
2424

@@ -152,6 +152,8 @@ ConnectionPool Attributes
152152

153153
.. autoproperty:: ConnectionPool.thin
154154

155+
See :ref:`vsessconinfo`.
156+
155157
.. autoproperty:: ConnectionPool.timeout
156158

157159
.. autoproperty:: ConnectionPool.username

doc/src/api_manual/deprecations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ used for new development.
180180
* - ``Cursor.executemanyprepared()``
181181
- Use :meth:`Cursor.executemany()` instead.
182182
* - Previously deprecated Advanced Queuing (AQ) API
183-
- Use the new :ref:`AQ API <aq>` instead. AQ is only available in the python-oracledb Thick mode.
183+
- Use the new :ref:`AQ API <aq>` instead. AQ is only available in python-oracledb Thick mode.
184184
* - ``Connection.deq()``
185185
- Replace with :meth:`Queue.deqone()` or :meth:`Queue.deqmany()`
186186
* - ``Connection.deqoptions()``

doc/src/api_manual/module.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,8 @@ Oracledb Methods
214214

215215
.. autofunction:: is_thin_mode
216216

217+
See :ref:`vsessconinfo`.
218+
217219
.. dbapimethodextension::
218220

219221
.. versionadded:: 1.1.0

doc/src/api_manual/soda.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ JSON strings. See the :ref:`user manual <sodausermanual>` for examples.
1414

1515
.. note::
1616

17-
SODA is only supported in the python-oracledb Thick mode. See
17+
SODA is only supported in python-oracledb Thick mode. See
1818
:ref:`enablingthick`.
1919

2020
.. _sodarequirements:
@@ -30,14 +30,14 @@ DBA:
3030
3131
SQL> grant soda_app, create table to myuser;
3232
33-
Advanced users who are using Oracle sequences for keys will also need the CREATE
34-
SEQUENCE privilege.
33+
Advanced users who are using Oracle sequences for keys will also need the
34+
CREATE SEQUENCE privilege.
3535

3636
SODA requires Oracle Client 18.3 or higher and Oracle Database 18.1 and higher.
3737

3838
.. note::
3939

40-
SODA APIs are only supported in the python-oracledb Thick mode. See
40+
SODA APIs are only supported in python-oracledb Thick mode. See
4141
:ref:`enablingthick`.
4242

4343
If you are using Oracle Database 21c (or later) and create new collections

0 commit comments

Comments
 (0)