We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Works:
PlSql = <<"BEGIN :p_Absolute:=round(abs(:p_val1),0); :p_Floor:=round(floor(:p_val2),0); END;">>. PlSqlBindVars = [{<<":p_val1">>,in,'SQLT_VNU'},{<<":p_val2">>,in,'SQLT_VNU'}, {<<":p_Absolute">>,out,'SQLT_INT'},{<<":p_Floor">>,out,'SQLT_INT'}]. PlSqlStmt = OciSession:prep_sql(PlSql). ok = PlSqlStmt:bind_vars(PlSqlBindVars). PlSqlStmt:exec_stmt([{oci_util:to_num("-5.5"), oci_util:to_num("4.9"),0,0}], 1). > {executed,1,[{<<":p_Absolute">>,6},{<<":p_Floor">>,4}]} ok = PlSqlStmt:close().
Doesn't work:
PlSql = <<"BEGIN :p_Absolute := abs(:p_val1); :p_Floor := floor(:p_val2); END;">>. PlSqlBindVars = [{<<":p_val1">>,in,'SQLT_VNU'},{<<":p_val2">>,in,'SQLT_VNU'}, {<<":p_Absolute">>,out,'SQLT_VNU'},{<<":p_Floor">>,out,'SQLT_VNU'}]. PlSqlStmt = OciSession:prep_sql(PlSql). ok = PlSqlStmt:bind_vars(PlSqlBindVars). PlSqlStmt:exec_stmt([{oci_util:to_num("-5.5"), oci_util:to_num("4.9"), oci_util:to_num("-100.100"), oci_util:to_num("-100.100")}], 1). > {error,{0, <<"[ocistmt::execute:763] unsupporetd type 6\n">>}} ok = PlSqlStmt:close().
The text was updated successfully, but these errors were encountered:
Merge pull request #25 from walter-weinmann/wwe_rebar3
6409c75
Migrating common test config processing.
c-bik
No branches or pull requests
Works:
Doesn't work:
The text was updated successfully, but these errors were encountered: