Re: function call

From: "Keow Yeong Huat Joseph" <jkeowyh(at)singtel(dot)com>
To: <darren(at)crystalballinc(dot)com>, "Keow Yeong Huat Joseph" <jkeowyh(at)singtel(dot)com>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: function call
Date: 2003-09-15 01:18:57
Message-ID: 6D76C3AAF21F9A4487D1F3D84982B3AF01546E77@EMHQ05B.singtel.corp.root
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thank you.

Calling from java code, is the same as:

select test(1);

Regards
Joseph

-----Original Message-----
From: darren(at)crystalballinc(dot)com [mailto:darren(at)crystalballinc(dot)com]
Sent: Monday, September 15, 2003 9:22 AM
To: Keow Yeong Huat Joseph
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] function call

create or replace function test(integer) returns boolean as '
declare
number alias for $1;
begin
if number = 0 then
return false;
else
return true;
end if;
end;' language 'plpgsql';

to call the function you can

SELECT test(1);

or can do

SELECT user_id,
user_name,
test(user_id) AS test
FROM users

or you can call from another function or from code.

Depending on where you wish to call the function / sp.

HTH
Darren

On Mon, 15 Sep 2003, Keow Yeong Huat Joseph wrote:

> Hi,
>
> Would anyone able to advise how can I call a function/Stored procedure? what command to issue?
>
> Thanks.
>
>
> Best Regards
>
> _______________________
>
> Joseph Keow
>
>

--
Darren Ferguson

Browse pgsql-general by date

  From Date Subject
Next Message darren 2003-09-15 01:21:44 Re: function call
Previous Message Relaxin 2003-09-15 01:05:50 Re: case-insensitive database