Re: quesion on functions calling from php - Mailing list pgsql-sql

From Tommy Gildseth
Subject Re: quesion on functions calling from php
Date
Msg-id 4624645D.70002@gildseth.com
Whole thread Raw
In response to quesion on functions calling from php  (Karthikeyan Sundaram <skarthi98@hotmail.com>)
List pgsql-sql
Karthikeyan Sundaram wrote:
> Hi,
>  
>    I have written a plpgsql function media_format_func(p_in 
> overlay_format_type) which returns int
>  
> $sql='select * from 
> media_format_func((200,400,'640*481','jpg')::overlay_format_type)';
>  
> $result = $this->objDB->query($sql);
> print_r($result,1);
>  
>   I should get a value as 10, instead I am getting the Resource ID as 
> 128 which is wrong I guess I am getting the output as an object and I 
> am not getting the expected resul that I should get. 

Try one of the methods $this->objDB->getRow($sql), 
$this->objDB->getAll($sql) or $this->objDB->getOne($sql) instead.
Also, have a look at the documentation at pear.php.net

-- 
Tommy
www.gildseth.com



pgsql-sql by date:

Previous
From: Karthikeyan Sundaram
Date:
Subject: quesion on functions calling from php
Next
From: "Radhika Sambamurti"
Date:
Subject: Floating point type to store numbers