begin
select user_name, password
into :ENV_USERS.username,
:ENV_USERS.user_password
from env_users
where user_name = :ENV_USERS.username
and password = :ENV_USERS.user_password;
exception
when no_data_found then
raise_application_error(-20100, 'Username/Password not valid');
end;
I am getting the following error and have no idea why ... can anyone help
?????
Error 201 at line 11, column 5
identifier 'RAISE_APPLICATION_ERROR' must be declared.
This is driving me nuts and I'm sure it's a real simple solution.
Dave Williams.
Dave.W...@daytonoh.ncr.com
In article <01bd5f0e$82c3e8e0$af53...@aohemd6willid1.DaytonOH.NCR.COM>,
-----== Posted via Deja News, The Leader in Internet Discussion ==-----
http://www.dejanews.com/ Now offering spam-free web-based newsreading
It works for me.
Andrea
David Williams <david.w...@daytonoh.ncr.com> wrote >>