|
-
How to raise a friendly message in pl/sql
Hi guys,
One of ours programmers want to raise a friendly message in a procedure.
for example:
create or replace produre my_date
v_date date;
begin
select sysdate
into v_date
from dual;
if v_date < '01-jan-05'
then message('We are still in 2004');
end if;
end;
/
What should we use for raising this kind of message to the user in the application?
Thanks in advance,
Nir
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|