on 2005 Oct 24 3:39 PM
We have a task to execute a stored procedure in Oracle from a BSP page. And this procedure has out parameters. I was trying to do this with the following code:
l_stmt->set_param( data_ref = lr_param
inout = cl_sql_statement=>c_param_out ).
But with no success. Oracle says just:
ORA-06572: Function xxxxxx has out argumentsAre there any working examples of using stored procedures in CL_SQL_STATEMENT with out params? Any other docs regarding this class would be very helpful.
Thanks in advance.
Request clarification before answering.
Found that OUT parameters work only with EXECUTE_PROCEDURE and do not work with other variants (e.g EXECUTE_QUERY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Found ADBC_DEMO programm but there is no out parameters
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.