Fw: Postgres function call problems - Mailing list pgsql-sql

From Sandeep Chibber
Subject Fw: Postgres function call problems
Date
Msg-id 01ac01c221b4$ebb93a90$1302a8c2@multicast.com
Whole thread Raw
List pgsql-sql
 
----- Original Message -----
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




pgsql-sql by date:

Previous
From: "D'Arcy J.M. Cain"
Date:
Subject: Re: problem with sql
Next
From: "Sandeep Chibber"
Date:
Subject: Problem with the result set of postgres