File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ Thick Mode Changes
27
27
(`issue 101 <https://github.com/oracle/python-oracledb/issues/101 >`__).
28
28
#) Fixed bug closing a SODA document cursor explicitly (instead of simply
29
29
allowing it to be closed automatically when it goes out of scope).
30
+ #) Fixed bug when calling :meth: `Subscription.registerquery() ` with bind
31
+ values.
30
32
31
33
Common Changes
32
34
++++++++++++++
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ cdef class ThickSubscrImpl(BaseSubscrImpl):
127
127
& cursor_impl._handle) < 0 :
128
128
_raise_from_odpi()
129
129
if args is not None :
130
- cursor_impl.bind_one(args)
130
+ cursor_impl.bind_one(cursor, args)
131
131
cursor_impl.execute(cursor)
132
132
if self .qos & DPI_SUBSCR_QOS_QUERY:
133
133
if dpiStmt_getSubscrQueryId(cursor_impl._handle, & query_id) < 0 :
You can’t perform that action at this time.
0 commit comments