Re: Procedure Builder & Built-In Packages

From: Steffen Stellwag <Steffen.Stellwag_at_pcm.bosch.de>
Date: Fri, 11 Sep 1998 10:39:48 +0200
Message-ID: <35F8E1D4.3C45_at_pcm.bosch.de>


Sebastian Frey wrote:

>
> Many thanks in advance,
>
> -Sebastian Frey

The TEXT_IO Package is a Package only supproted in the Tools-Environment (for example in Forms)

If you want to display messages in your Program running on the Server you have to use DBMS_OUTPUT.put_line instead of TEXT_IO.putline Don't forget to specify SET SERVEROUTPUT ON.

exaxmple:

Your procedure: create or replace repcedure test as

		begin
			dbms_output.put_line ('hallo');
		end;

Test on the server:

>sqlplus
>set serverout on;
>execute test;
Received on Fri Sep 11 1998 - 10:39:48 CEST

Original text of this message