Assuming I have a function in Oracle:
function pass return int
IS
BEGIN
return 213;
END;
And I want to add a parameter of the return value with NO actual name, parameter.Add("hello???", OracleDBType.Int32).Direction = ParameterDirection.ReturnValue; . How should I do that?
RETURN_VALUEseems apposite.