Re: Stored Procedure Problem

Поиск
Список
Период
Сортировка
От Rajesh Kumar Mallah.
Тема Re: Stored Procedure Problem
Дата
Msg-id 200212131631.42051.mallah@trade-india.com
обсуждение исходный текст
Ответ на Re: Stored Procedure Problem  (Tomasz Myrta <jasiek@klaster.net>)
Список 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@postgresql.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.




В списке pgsql-sql по дате отправления:

Предыдущее
От: "Rajesh Kumar Mallah."
Дата:
Сообщение: Re: function replace doesnt exist
Следующее
От: Harald Krake
Дата:
Сообщение: order by and limit with multi-column index, bug?