File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ python-oracledb Release Notes
77
88For deprecations, see :ref: `Deprecations <deprecations >`.
99
10+ oracledb 1.3.1 (TBD)
11+ --------------------
12+
13+ Thin Mode Changes
14+ +++++++++++++++++
15+
16+ #) Fixed bug when SQL is executed after first being parsed with Oracle
17+ Database 23c.
18+
19+
1020oracledb 1.3.0 (March 2023)
1121---------------------------
1222
Original file line number Diff line number Diff line change @@ -1852,9 +1852,9 @@ cdef class ExecuteMessage(MessageWithData):
18521852 self .cursor_impl._fetch_array_size = num_iters
18531853 else :
18541854 num_iters = self .cursor_impl._fetch_array_size
1855- if not stmt._is_plsql:
1855+ if not stmt._is_plsql and not self .parse_only :
18561856 options |= TNS_EXEC_OPTION_NOT_PLSQL
1857- elif num_params > 0 :
1857+ elif stmt._is_plsql and num_params > 0 :
18581858 options |= TNS_EXEC_OPTION_PLSQL_BIND
18591859 if num_params > 0 :
18601860 options |= TNS_EXEC_OPTION_BIND
You can’t perform that action at this time.
0 commit comments