I have one stored procedure in postgres which used out parameter.
How to use that out parameter value in python.
create or replace procedure test(id number,result out varchar2)
as
begin
result := 'Saud';
end;
I want call above stored procedure from python.
How to call that procedure from python with out parameter?