File tree Expand file tree Collapse file tree 5 files changed +4
-20
lines changed
Expand file tree Collapse file tree 5 files changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -224,9 +224,6 @@ AsyncConnection Methods
224224
225225 .. note ::
226226
227- In this release, pipelining support is experimental and subject to
228- change.
229-
230227 True pipelining requires Oracle Database 23ai.
231228
232229 When you connect to an older database, operations are sequentially
Original file line number Diff line number Diff line change @@ -1148,11 +1148,6 @@ Oracledb Methods
11481148 Creates a :ref: `pipeline object <pipelineobjs >` which can be used to
11491149 process a set of operations against a database.
11501150
1151- .. note ::
1152-
1153- In this release, pipelining support is experimental and subject to
1154- change.
1155-
11561151 .. versionadded :: 2.4.0
11571152
11581153.. function :: create_pool(dsn=None, pool_class=oracledb.ConnectionPool, \
@@ -3260,10 +3255,6 @@ These constants belong to the enumeration called ``PipelineOpType``. The
32603255pipelining constants listed below are used to identify the type of operation
32613256added. They are possible values for the :attr: `PipelineOp.op_type ` attribute.
32623257
3263- .. note ::
3264-
3265- In this release, pipelining support is experimental and subject to change.
3266-
32673258.. versionadded :: 2.4.0
32683259
32693260.. data :: oracledb.PIPELINE_OP_TYPE_CALL_FUNC
Original file line number Diff line number Diff line change 44API: Pipeline Objects
55*********************
66
7- .. note ::
8-
9- In this release, pipelining support is experimental and subject to change.
10-
117Pipelining is only supported in python-oracledb Thin mode with
128:ref: `asyncio <concurrentprogramming >`. See :ref: `pipelining ` for more
139information about pipelining.
Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ Thin Mode Changes
4242#) The thread that closes connection pools on interpreter shutdown is now only
4343 started when the first pool is created and not at module import
4444 (`issue 426 <https://github.com/oracle/python-oracledb/issues/426 >`__).
45+ #) Added support for Transaction Guard by adding support to get the values of
46+ :attr: `Connection.ltxid ` and :attr: `oracledb._Error.isrecoverable `.
47+ #) Support for :ref: `Pipelining <pipelining >` is no longer considered a
48+ pre-release.
4549#) Fixed hang when attempting to use pipelining against a database that
4650 doesn't support the end of response flag.
4751#) Fixed hang when using asyncio and a connection is unexpectedly closed by
Original file line number Diff line number Diff line change @@ -300,10 +300,6 @@ and can destroy transactional consistency.
300300Pipelining Database Operations
301301==============================
302302
303- .. note ::
304-
305- In this release, pipelining support is experimental and subject to change.
306-
307303Pipelining allows an application to send multiple, independent statements to
308304Oracle Database with one call. The database can be kept busy without waiting
309305for the application to receive a result set and send the next statement. While
You can’t perform that action at this time.
0 commit comments