Hi!
This code has error. How to use dbms_output.put_line in here?
Thank you!
do
$do$
declare
ch varchar(200);
BEGIN
ch:='hello, world!';
select dbms_output.serveroutput('t');
select dbms_output.put_line(ch);
END
$do$;
--
You received this message because you are subscribed to the Google Groups "Better Oracle functions support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to orafce-genera...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/orafce-general/e2573fb4-6f11-74e3-58bf-cc13d685b88b%40gmail.com.
Thank you!
Next question if possible: How to suppress in output phrase DO?
do
$do$
declare
ch varchar(200);
BEGIN
ch:='hello, world!';
perform dbms_output.serveroutput('t');
perform dbms_output.put_line(ch);
END
$do$;
OUTPUT:
hello, world!
DO
To view this discussion on the web visit https://groups.google.com/d/msgid/orafce-general/CAFj8pRCOSx4P5-vgGNWPhFeneiAodjyVZm6NGvp7q7pzLY0Hkw%40mail.gmail.com.
Thank you!
Next question if possible: How to suppress in output phrase DO?
do
$do$
declare
ch varchar(200);
BEGIN
ch:='hello, world!';
perform dbms_output.serveroutput('t');
perform dbms_output.put_line(ch);
END
$do$;OUTPUT:
hello, world!
DO