python调用oracle存储过程(packeage)

http://markmail.org/message/y64t5mqlgy4rogte

http://www.oracle.com/technetwork/cn/articles/prez-stored-proc-096180-zhs.html

 1 import cx_Oracle
 2 dsn = cx_Oracle.makedsn('10.10.196.218','1521','ORACLE2')
 3 conn = cx_Oracle.connect('x5user','x5user',dsn)
 4 c = conn.cursor()
 5 str = c.var(cx_Oracle.CURSOR)
 6 str2 = c.callproc('pack_pollutant.proc_pollutantdata',[str])
 7 rs = str2[-1].fetchall()
 8 print(rs)
 9 c.close
10 conn.close
11 
12 
13 
14 str = c.var(cx_Oracle.NUMBER)
15 str2=c.callproc('proc_s2_back',[str])
16 print(str2)
原文地址:https://www.cnblogs.com/kingxiaozi/p/4645224.html