Skip to content

Commit cda4cb0

Browse files
Documentation improvements.
1 parent 30e554b commit cda4cb0

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

doc/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Makefile to generate cx_Oracle documentation using Sphinx
1+
# Makefile to generate python-oracledb documentation using Sphinx
22

33
SPHINXOPTS =
44
SPHINXBUILD = sphinx-build
@@ -20,4 +20,3 @@ pdf:
2020
.PHONY: clean
2121
clean:
2222
rm -rf $(BUILDDIR)/*
23-

doc/src/api_manual/connection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Connection Methods
5555

5656
.. method:: Connection.cancel()
5757

58-
Breaks a long-running transaction.
58+
Breaks a long-running statement.
5959

6060
.. note::
6161

doc/src/user_guide/appendix_a.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ see :ref:`driverdiff` and :ref:`compatibility`.
198198
- Yes
199199
- Yes
200200
- Yes
201-
* - Client character set support
202-
- UTF-8 - see :ref:`globalization`
201+
* - Client character set support (see :ref:`globalization`)
202+
- UTF-8
203203
- UTF-8
204204
- Yes - can use Python encodings. Default in 8.0 is UTF-8
205205
* - Oracle Globalization support

doc/src/user_guide/connection_handling.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2518,6 +2518,13 @@ files:
25182518
connection = oracledb.connect(user="admin", password=pw, dsn="mydb_low")
25192519
25202520
2521+
In python-oracle Thick mode, to create mTLS connections in one Python process
2522+
to two or more Oracle Autonomous Databases, move each ``cwallet.sso`` file to
2523+
its own directory. For each connection use different connection string
2524+
``WALLET_LOCATION`` parameters to specify the directory of each ``cwallet.sso``
2525+
file. It is recommended to use Oracle Client libraries 19.17 (or later) when
2526+
using multiple wallets.
2527+
25212528
Access Through a Proxy
25222529
+++++++++++++++++++++++
25232530

0 commit comments

Comments
 (0)