Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/fix stored procedure out parameter #6

Conversation

hisame64
Copy link

I fixed #5 .
If you run test, you must create Oracle Package before run. (See #4 )

create or replace package calc is
  function sum(a number, b number) return number;
  function twice(a in number, b out number) return varchar2;
end calc;

create or replace package body calc is

  function sum(a number, b number) return number is
  begin
    return a+b;
  end;

  function twice(a in number, b out number) return varchar2 is
  begin
    b := a*2;
    return 'OK';
  end;

end calc;

@hisame64 hisame64 changed the title Issue/fix stored procedure out parameter Issue/fix stored procedure out parameter #5 Mar 26, 2016
@hisame64 hisame64 changed the title Issue/fix stored procedure out parameter #5 Issue/fix stored procedure out parameter Mar 26, 2016
@hisame64
Copy link
Author

Do you not merge this request and not fix any issue?
If you will not fix, I will fork and customize this Oracle driver.

@skie
Copy link
Member

skie commented May 16, 2016

This pull request not needed for making out params working. I added new test case today that consfirms that.

@skie skie closed this May 16, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Stored procedure's OUT parameter isn't set.
3 participants