22 lines
715 B
Python
22 lines
715 B
Python
#------------------------------------------------------------------------------
|
|
# Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
#------------------------------------------------------------------------------
|
|
|
|
#------------------------------------------------------------------------------
|
|
# PLSQLFunction.py
|
|
#
|
|
# Demonstrate how to call a PL/SQL function and get its return value.
|
|
#------------------------------------------------------------------------------
|
|
|
|
from __future__ import print_function
|
|
|
|
import cx_Oracle
|
|
import SampleEnv
|
|
|
|
connection = cx_Oracle.connect(SampleEnv.MAIN_CONNECT_STRING)
|
|
|
|
cursor = connection.cursor()
|
|
res = cursor.callfunc('myfunc', int, ('abc', 2))
|
|
print(res)
|
|
|