DECLARE
PROCEDURE l (p_in_msg IN VARCHAR2)
IS
BEGIN
DBMS_OUTPUT.put_line (p_in_msg);
END l;
BEGIN
l ('Begin program ...');
l ('The process l only use it to not write all the sentence dbms_output.put_line');
l ('Finish program ...');
EXCEPTION
WHEN OTHERS
THEN
l ('Erro>: ' || SQLERRM);
END;
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.