Print in PL/SQL
From: Stjepan Brbot <Stjepan.Brbot_at_ZG.HiNet.HR>
Date: Fri, 18 Jan 2002 22:00:51 +0100
Message-ID: <a2a2gb$e91j$1_at_as201.hinet.hr>
[Quoted] [Quoted] How to print the simplest message in PL/SQL? I.e. how to print on screen [Quoted] all rows of cursor when you execute this procedure?
Date: Fri, 18 Jan 2002 22:00:51 +0100
Message-ID: <a2a2gb$e91j$1_at_as201.hinet.hr>
[Quoted] [Quoted] How to print the simplest message in PL/SQL? I.e. how to print on screen [Quoted] all rows of cursor when you execute this procedure?
PROCEDURE ABC IS
[Quoted] CURSOR curABC IS SELECT * FROM tableA;
BEGIN
FOR row IN curABC LOOP
??? print row ???
END LOOP;
END;
-- Stjepan Brbot <Stjepan.Brbot_at_ZG.HiNet.HR>Received on Fri Jan 18 2002 - 22:00:51 CET
