我整天努力工作,试图使用cx_Oracle从PL / SQL函数中获取布尔值。我看到过一些帖子在谈论使用其他一些数据类型(例如char或integer)来存储返回值,但是当我尝试使用此类解决方案时,会收到错误的数据类型错误。首先,让我显示代码。
def lives_on_campus(self):
cursor = conn.cursor()
ret = cursor.callfunc('students_api.lives_on_campus', bool, [self.pidm])
return ret
如果使用11.2.0.4数据库客户端,则会出现以下错误。
File "student-extracts.py", line 134, in <module>
if student.lives_on_campus():
File "student-extracts.py", line 58, in lives_on_campus
ret = cursor.callfunc('students_api.lives_on_campus', bool, [self.pidm])
cx_Oracle.DatabaseError: DPI-1050: Oracle Client library is at version 11.2 but version 12.1 or higher is needed
如果我使用12.1.0.2数据库客户端或更高版本,则会收到此错误。
Traceback (most recent call last):
File "student-extracts.py", line 134, in <module>
if student.lives_on_campus():
File "student-extracts.py", line 58, in lives_on_campus
ret = cursor.callfunc('students_api.lives_on_campus', bool, [self.pidm])
cx_Oracle.DatabaseError: ORA-03115: unsupported network datatype or representation
基本上,无论我使用哪个版本的SQL客户端,它都会出错。现在,我知道如果数据库版本为12c R2,则上面的代码将起作用。不幸的是,我们在TEST环境中只有该版本,而PROD仅使用11g数据库。有什么我可以使该功能与11g数据库一起使用的吗?必须有解决方法。
〜鲍勃
答案 0 :(得分:0)
尝试使用包装程序匿名块,例如:
with connection.cursor() as cursor:
outVal = cursor.var(int)
sql="""
begin
:outVal := sys.diutil.bool_to_int(students_api.lives_on_campus(:pidm));
end;
"""
cursor.execute(sql, outVal=outVal, pidm='123456')
print(outVal.getvalue())