Re: Is there an equivalent in plpgsql of Oracle's DBMS_OUTPUT.PUT_LINE? - Mailing list pgsql-novice

From Bruno LEVEQUE
Subject Re: Is there an equivalent in plpgsql of Oracle's DBMS_OUTPUT.PUT_LINE?
Date
Msg-id bkpmgp$orm$1@news.hub.org
Whole thread Raw
In response to Is there an equivalent in plpgsql of Oracle's DBMS_OUTPUT.PUT_LINE?  (Glenn_Wiens@via-christi.org)
List pgsql-novice
Yes, you have with a syntax like :

Raise debug ''whatever you want % '', aVariable;

You must find more help in the manual.

Bruno

Glenn_Wiens@via-christi.org wrote:

>I am somewhat new to PostgreSQL's procedure language, and I have not been
>able to find a way to do ad-hoc outputs to the console from plpgsql
>functions -- mostly for debugging purposes. Oracle has the DBMS_OUTPUT
>package which included the PUT_LINE() function. Is there something like
>this in plpgsql?
>
>Thanks.
>
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 2: you can get off all lists at once with the unregister command
>    (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
>
>
>

--
Bruno LEVEQUE
System Engineer
SARL NET6D
bruno.leveque@net6d.com
http://www.net6d.com


pgsql-novice by date:

Previous
From: Juan Francisco Diaz
Date:
Subject: Concatenating
Next
From: Bruno LEVEQUE
Date:
Subject: Re: Referencing multiple primary keys from a single table.