Re: How do I print a message in a function?

From: Jie Liang <jliang(at)ipinc(dot)com>
To: Wei Weng <wweng(at)kencast(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: How do I print a message in a function?
Date: 2001-07-03 00:59:17
Message-ID: Pine.BSF.4.10.10107021756020.44266-100000@tidal.ipinc.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

You have to use two single quota

Jie LIANG

St. Bernard Software

10350 Science Center Drive
Suite 100, San Diego, CA 92121
Office:(858)320-4873

jliang(at)ipinc(dot)com
www.stbernard.com
www.ipinc.com

On 2 Jul 2001, Wei Weng wrote:

> I did something like
>

try this

> create function test() returns integer as
> '
> declare
> msg varchar;
> begin
> msg := ''test'';
> RAISE NOTICE ''message is % '',msg;
> end'
> language 'plpgsql';
>
> The function compiled without any error, however, when I tried to run it
> as select test(); it broke down with an error message " Unterminated " "
>
> Can anyone help me on this?
>
> Thanks!
>
>
> --
> Wei Weng
> Network Software Engineer
> KenCast Inc.
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Markus Wagner 2001-07-03 06:46:13 traversing foreign key relationships between tables
Previous Message Wei Weng 2001-07-02 23:46:03 How do I print a message in a function?