In windows script, how can you get the value of the output parameter from calling a stored procedure?
Here's a test procedure I've been working with:
PROCEDURE f (p IN NUMBER, y OUT NUMBER)
IS
BEGIN
y:=4 * p;
END;
I want to get the value y into a variable in the windows script.
Here's a test procedure I've been working with:
PROCEDURE f (p IN NUMBER, y OUT NUMBER)
IS
BEGIN
y:=4 * p;
END;
I want to get the value y into a variable in the windows script.