Hi all,
I need your help here,
i have pl/sql procedure , this query returns 1 as out put, but to see that result?, when i execute this procedure,like this,
execute pro_name('email id',password);
it shows only "anonymous block completed",
how to see its output that retrieves, Is there any possibility?
my PLSQL query is,
Thanks in advance.
I need your help here,
i have pl/sql procedure , this query returns 1 as out put, but to see that result?, when i execute this procedure,like this,
execute pro_name('email id',password);
it shows only "anonymous block completed",
how to see its output that retrieves, Is there any possibility?
my PLSQL query is,
Code:
CREATE OR REPLACE
PROCEDURE PRO_GET_SYSTEM_IsValidUser(
p_loginID in varchar2,
p_password in varchar2,
p_exists in out number
)
IS
BEGIN
SELECT COUNT(*)
INTO p_exists
FROM employees
WHERE emailid = p_loginid
AND password = p_password
AND enabled = 'TRUE'
AND ROWNUM=1;
END;
Comment