Re: Stored Procedure Problem

From: "Rajesh Kumar Mallah(dot)" <mallah(at)trade-india(dot)com>
To: Tomasz Myrta <jasiek(at)klaster(dot)net>, Atul <atul(at)imcindia(dot)net>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Stored Procedure Problem
Date: 2002-12-13 11:01:42
Message-ID: 200212131631.42051.mallah@trade-india.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


In 7.3 you can ,

in follwoing steps,

1. do a CREATE TYPE (i would recommend to use a sperate schema for storing user defined types)
2. in plpgsql declare the RECORD of that type .

3. populate the record varible according to your business logic and return the RECORD using RETURN statements.

hope it will help ,
if not please revert back.

regds
mallah.

On Thursday 12 December 2002 08:21 pm, Tomasz Myrta wrote:
> Atul wrote:
> > CREATE FUNCTION b_function() RETURNS varchar AS '
> >
> > DECLARE
> >
> > an_integer int4;
> >
> > an_name varchar;
> >
> > BEGIN
> >
> > select into an_integer emp_id,an_name emp_name from employee;
> >
> > return an_integer,an_name;
> >
> > END;
> >
> > '
>
> First: select into an_integer,an_name emp_id,emp_name...
> Second: you can't return 2 variables from plpgsql function.
>
> Tomasz Myrta
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org

--
Rajesh Kumar Mallah,
Project Manager (Development)
Infocom Network Limited, New Delhi
phone: +91(11)6152172 (221) (L) ,9811255597 (M)

Visit http://www.trade-india.com ,
India's Leading B2B eMarketplace.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Harald Krake 2002-12-13 14:34:58 order by and limit with multi-column index, bug?
Previous Message Rajesh Kumar Mallah. 2002-12-13 10:56:56 Re: function replace doesnt exist