6. Executing PL/SQL

PL/SQL stored procedures, functions and anonymous blocks can be called from python-oracledb.

6.1. PL/SQL Stored Procedures

The Cursor.callproc() method is used to call PL/SQL procedures.

If a procedure with the following definition exists:

create or replace procedure myproc (
    a_Value1                            number,
    a_Value2                            out number
) as
begin
    a_Value2 := a_Value1 * 2;
end;

then the following Python code can be used to call it:

out_val = cursor.var(int)
cursor.callproc('myproc', [123, out_val])
print(out_val.getvalue())        # will print 246

Calling Cursor.callproc() internally generates an anonymous PL/SQL block and executes it. This is equivalent to the application code:

cursor.execute("begin myproc(:1,:2); end;", [123, out_val])

See Using Bind Variables for information on binding.

6.2. PL/SQL Stored Functions

The Cursor.callfunc() method is used to call PL/SQL functions.

The returnType parameter for callfunc() is expected to be a Python type, one of the oracledb types or an Object Type.

If a function with the following definition exists:

create or replace function myfunc (
    a_StrVal varchar2,
    a_NumVal number
) return number as
begin
    return length(a_StrVal) + a_NumVal * 2;
end;

then the following Python code can be used to call it:

return_val = cursor.callfunc("myfunc", int, ["a string", 15])
print(return_val)        # will print 38

A more complex example that returns a spatial (SDO) object can be seen below. First, the SQL statements necessary to set up the example:

create table MyPoints (
    id number(9) not null,
    point sdo_point_type not null
);

insert into MyPoints values (1, sdo_point_type(125, 375, 0));

create or replace function spatial_queryfn (
    a_Id     number
) return sdo_point_type is
    t_Result sdo_point_type;
begin
    select point
    into t_Result
    from MyPoints
    where Id = a_Id;

    return t_Result;
end;
/

The Python code that will call this procedure looks as follows:

obj_type = connection.gettype("SDO_POINT_TYPE")
cursor = connection.cursor()
return_val = cursor.callfunc("spatial_queryfn", obj_type, [1])
print(f"({return_val.X}, {return_val.Y}, {return_val.Z})")
# will print (125, 375, 0)

See Using Bind Variables for information on binding.

6.3. Anonymous PL/SQL Blocks

An anonymous PL/SQL block can be called as shown:

var = cursor.var(int)
cursor.execute("""
        begin
            :out_val := length(:in_val);
        end;""", in_val="A sample string", out_val=var)
print(var.getvalue())        # will print 15

See Using Bind Variables for information on binding.

6.4. Creating Stored Procedures and Packages

To create PL/SQL stored procedures and packages, use Cursor.execute() with a CREATE command. For example:

cursor.execute("""
        create or replace procedure myprocedure
        (p_in in number, p_out out number) as
        begin
            p_out := p_in * 2;
        end;""")

6.4.1. PL/SQL Compilation Warnings

When creating PL/SQL procedures and functions (or creating types) in python-oracledb, the statement might succeed without throwing an error, but there may be additional informational messages. (These messages are sometimes known in Oracle as “success with info” messages). If your application needs to show such messages, they must be explicitly looked for using Cursor.warning. A subsequent query from a table like USER_ERRORS will show more details. For example:

with connection.cursor() as cursor:

    cursor.execute("""
            create or replace procedure badproc as
            begin
                WRONG WRONG WRONG
            end;""")

    if cursor.warning and cursor.warning.full_code == "DPY-7000":
        print(cursor.warning)

        # Get details
        cursor.execute("""
                select line, position, text
                from user_errors
                where name = 'BADPROC' and type = 'PROCEDURE'
                order by line, position""")
        for info in cursor:
            print("Error at line {} position {}:\n{}".format(*info))

The output would be:

DPY-7000: creation succeeded with compilation errors
Error at line 3 position 23:
PLS-00103: Encountered the symbol "WRONG" when expecting one of the following:

   := . ( @ % ;

6.5. Using DBMS_OUTPUT

The standard way to print output from PL/SQL is with the package DBMS_OUTPUT. Note, PL/SQL code that uses DBMS_OUTPUT runs to completion before any output is available to the user. Also, other database connections cannot access the buffer.

To use DBMS_OUTPUT:

  • Call the PL/SQL procedure DBMS_OUTPUT.ENABLE() to enable output to be buffered for the connection.

  • Execute some PL/SQL that calls DBMS_OUTPUT.PUT_LINE() to put text in the buffer.

  • Call DBMS_OUTPUT.GET_LINE() or DBMS_OUTPUT.GET_LINES() repeatedly to fetch the text from the buffer until there is no more output.

For example:

# enable DBMS_OUTPUT
cursor.callproc("dbms_output.enable")

# execute some PL/SQL that calls DBMS_OUTPUT.PUT_LINE
cursor.execute("""
        begin
            dbms_output.put_line('This is the python-oracledb manual');
            dbms_output.put_line('Demonstrating how to use DBMS_OUTPUT');
        end;""")

# tune this size for your application
chunk_size = 100

# create variables to hold the output
lines_var = cursor.arrayvar(str, chunk_size)
num_lines_var = cursor.var(int)
num_lines_var.setvalue(0, chunk_size)

# fetch the text that was added by PL/SQL
while True:
    cursor.callproc("dbms_output.get_lines", (lines_var, num_lines_var))
    num_lines = num_lines_var.getvalue()
    lines = lines_var.getvalue()[:num_lines]
    for line in lines:
        print(line or "")
    if num_lines < chunk_size:
        break

This will produce the following output:

This is the python-oracledb manual
Demonstrating use of DBMS_OUTPUT

An alternative is to call DBMS_OUTPUT.GET_LINE() once per output line, which may be much slower:

text_var = cursor.var(str)
status_var = cursor.var(int)
while True:
    cursor.callproc("dbms_output.get_line", (text_var, status_var))
    if status_var.getvalue() != 0:
        break
    print(text_var.getvalue())

6.6. Implicit results

Implicit results permit a Python program to consume cursors returned by a PL/SQL block without the requirement to use OUT REF CURSOR parameters. The method Cursor.getimplicitresults() can be used for this purpose. It requires both the Oracle Client and Oracle Database to be 12.1 or higher.

An example using implicit results is as shown:

cursor.execute("""
        declare
            cust_cur sys_refcursor;
            sales_cur sys_refcursor;
        begin
            open cust_cur for SELECT * FROM cust_table;
            dbms_sql.return_result(cust_cur);

            open sales_cur for SELECT * FROM sales_table;
            dbms_sql.return_result(sales_cur);
        end;""")

for implicit_cursor in cursor.getimplicitresults():
    for row in implicit_cursor:
        print(row)

Data from both the result sets are returned:

(1, 'Tom')
(2, 'Julia')
(1000, 1, 'BOOKS')
(2000, 2, 'FURNITURE')

6.7. Edition-Based Redefinition (EBR)

Oracle Database’s Edition-Based Redefinition feature enables upgrading of the database component of an application while it is in use, thereby minimizing or eliminating down time. This feature allows multiple versions of views, synonyms, PL/SQL objects and SQL Translation profiles to be used concurrently. Different versions of the database objects are associated with an “edition”.

Note

Setting the Edition-Based Redefinition (EBR) edition at connection time is only supported in the python-oracledb Thick mode. See Enabling python-oracledb Thick mode. In python-oracledb Thin mode, the edition can be changed with ALTER SESSION after connecting.

The simplest way to set an edition is to pass the edition parameter to oracledb.connect() or oracledb.create_pool():

connection = oracledb.connect(user="hr", password=userpwd,
                               dsn="dbhost.example.com/orclpdb",
                               edition="newsales", encoding="UTF-8")

The edition could also be set by setting the environment variable ORA_EDITION or by executing the SQL statement:

alter session set edition = <edition name>;

Regardless of which method is used to set the edition, the value that is in use can be seen by examining the attribute Connection.edition. If no value has been set, the value will be None. This corresponds to the database default edition ORA$BASE.

Consider an example where one version of a PL/SQL function Discount is defined in the database default edition ORA$BASE and the other version of the same function is defined in a user created edition DEMO.

connect <username>/<password>

-- create function using the database default edition
CREATE OR REPLACE FUNCTION Discount(price IN NUMBER) RETURN NUMBER IS
BEGIN
    return price * 0.9;
END;
/

A new edition named ‘DEMO’ is created and the user given permission to use editions. The use of FORCE is required if the user already contains one or more objects whose type is editionable and that also have non-editioned dependent objects.

connect system/<password>

CREATE EDITION demo;
ALTER USER <username> ENABLE EDITIONS FORCE;
GRANT USE ON EDITION demo to <username>;

The Discount function for the demo edition is as follows:

connect <username>/<password>

alter session set edition = demo;

-- Function for the demo edition
CREATE OR REPLACE FUNCTION Discount(price IN NUMBER) RETURN NUMBER IS
BEGIN
    return price * 0.5;
END;
/

The Python application can then call the required version of the PL/SQL function as shown:

connection = oracledb.connect(user=user, password=password,
                               dsn="dbhost.example.com/orclpdb",
                               encoding="UTF-8")
print("Edition is:", repr(connection.edition))

cursor = connection.cursor()
discounted_price = cursor.callfunc("Discount", int, [100])
print("Price after discount is:", discounted_price)

# Use the edition parameter for the connection
connection = oracledb.connect(user=user, password=password,
                               dsn="dbhost.example.com/orclpdb",
                               edition="demo", encoding="UTF-8")
print("Edition is:", repr(connection.edition))

cursor = connection.cursor()
discounted_price = cursor.callfunc("Discount", int, [100])
print("Price after discount is:", discounted_price)

The output of the function call for the default and demo edition is as shown:

Edition is: None
Price after discount is:  90
Edition is: 'DEMO'
Price after discount is:  50