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