gpt4 book ai didi

python - 使用 sys.odcinumberlist 作为参数从 python 执行 PL/SQL 过程

转载 作者:行者123 更新时间:2023-11-28 16:58:41 28 4
gpt4 key购买 nike

给定一个 PL/SQL 过程:

PROCEDURE MyProc(myvar IN sys.odcinumberlist, curout OUT sys_refcursor);

我如何使用 cx_Oracle 从 python 执行它?我在努力

cursor.callproc('MyProc', (param, cursor_out))

参数为[1, 2, 3]cursor.arrayvar(cx_Oracle.NUMBER, [1, 2, 3])但它会导致错误“错误的参数数量或类型”。

最佳答案

使用conn.gettype 定义SYS.ODCINUMBERLIST 对象。然后用它来分配一个值列表(数字)

示例程序

create or replace procedure MyProc( myvar  IN  sys.odcinumberlist, 
curout OUT sys_refcursor )
AS
BEGIN
open curout for select * from TABLE(myvar);
END;
/

Python代码

conn = cx_Oracle.connect('usr/pwd@//localhost:1521/DB')
cur = conn.cursor()

tableTypeObj = conn.gettype("SYS.ODCINUMBERLIST")
params = tableTypeObj.newobject()

po_cursor_out = cur.var(cx_Oracle.CURSOR)

params = tableTypeObj([1,2,3])

cur.callproc('hr.myproc', [ params, po_cursor_out])
result_cur = po_cursor_out.getvalue()

for row in result_cur:
print(row[0])

结果

1
2
3

关于python - 使用 sys.odcinumberlist 作为参数从 python 执行 PL/SQL 过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55870018/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com