Fw: Postgres function call problems

From: "Sandeep Chibber" <sandeep(at)vreach(dot)net>
To: <pgsql-sql(at)postgresql(dot)org>, <pgsql-sql-owner(at)postgresql(dot)org>
Cc: <pgsql-novice-owner(at)postgresql(dot)org>, <pgsql-odbc-owner(at)postgresql(dot)org>, <pgsql-jdbc-owner(at)postgresql(dot)org>, <pgsql-general-owner(at)postgresql(dot)org>, <pgsql-admin-owner(at)postgresql(dot)org>
Subject: Fw: Postgres function call problems
Date: 2002-07-02 10:40:44
Message-ID: 01ac01c221b4$ebb93a90$1302a8c2@multicast.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


----- Original Message -----
From: Sandeep Chibber
To: barry(at)xythos(dot)com
Sent: Friday, May 31, 2002 10:50 AM
Subject: Postgres function call problems

Hi Barry,

I want to have function which will have a query which will accept a parameter from my application and on the basis of the parameter retreive a result set.

Normal call through SELECT gets me an number,i guess some kind of id. In the following function i get ouput as something like 168269272 .If there are three rows in the table then the value will be reapeated three times .I want the value and not an id

Table structure is

CREATE TABLE ICDN_EVENTREG ( USER_ID VARCHAR(30) NOT NULL , PASSWORD VARCHAR(16) , EMAIL VARCHAR(80) , DEPARTMENT VARCHAR(30) , FIRST_NAME VARCHAR(30) , LAST_NAME VARCHAR(30) , DESIGNATION VARCHAR(30) , TYPE VARCHAR(15) , STATUS VARCHAR(15) DEFAULT 'Pending') ;

Function body is as bellow

CREATE FUNCTION tester5(varchar, varchar) RETURNS SETOF ICDN_EVENTREG AS
'SELECT user_id,password,email,department,first_name,last_name,designation,type,status FROM ICDN_EVENTREG WHERE ICDN_EVENTREG.USER_ID = $1 AND ICDN_EVENTREG.PASSWORD = $2 ' LANGUAGE 'sql';

I want to Know how
1. How to pass parameter to this function
2. How to call this application
3. In this function i am selecting all the fields , if i want to select only
two or three tuples,then how to go about it
4. If have idea about java bean then how to call his function from a Java
Bean.

Thanks for your prompt reply. You are saving me from lot of trouble.

Thanks again

Sandeep

Browse pgsql-sql by date

  From Date Subject
Next Message Achilleus Mantzios 2002-07-02 12:16:53 Re: CASE Select, referring to selected value
Previous Message Roberto Mello 2002-07-02 05:23:38 Re: pl/pgsql capabilities?