Hi to All,
In my db (Oracle) I have some packages, with procedures and functions.
Exists in SC a macro that execute a stored procedure/function and return the result in a variable?
for example in my DB I have this function:
FUNCTION get_hash (p_username IN VARCHAR2, p_password IN VARCHAR2)
RETURN VARCHAR2
AS
BEGIN
RETURN DBMS_OBFUSCATION_TOOLKIT.MD5 (
input_string => UPPER (p_username) || '/' || UPPER (p_password)
);
END;
How can call this function giving the return value to variable $var_password ?
Thank You and Best Regards
Gaetano