Re: How to call a PL/pgSQL function in a PHP script

From: "Sebastien Baudry" <sbaudry(at)yahoo(dot)com>
To: <pgsql-php(at)postgresql(dot)org>
Subject: Re: How to call a PL/pgSQL function in a PHP script
Date: 2003-10-02 08:54:56
Message-ID: KAECIKDEBEFAPMGIJGOGOEKDENAA.sbaudry@yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Sorry, I should have precised that my PL/pgSQL function returns a REFCURSOR
and it's that cursor that I don't know how to manipulate in my PHP script.

-----Message d'origine-----
De : pgsql-php-owner(at)postgresql(dot)org
[mailto:pgsql-php-owner(at)postgresql(dot)org]De la part de Ahmad Sentri
Envoyé : Thursday, October 02, 2003 10:46 AM
À : sebastien(dot)baudry(at)baudry-engineering(dot)com
Cc : pgsql-php(at)postgresql(dot)org
Objet : Re: [PHP] How to call a PL/pgSQL function in a PHP script

in php syntax for call a function
u can use in sql select a function that already made

the way u can write in php syntax with :
$sql_select="SELECT name_of_fanction(var1,var2,...) from name_of_table
===
so if u make a function with the name: name_function
so :
$sql_select="SELECT name_function(var1) from table

On Thu, 2 Oct 2003, Sebastien Baudry wrote:

> Date: Thu, 2 Oct 2003 10:00:10 +0200
> From: Sebastien Baudry <sbaudry(at)yahoo(dot)com>
> Reply-To: sebastien(dot)baudry(at)baudry-engineering(dot)com
> To: pgsql-php(at)postgresql(dot)org
> Subject: [PHP] How to call a PL/pgSQL function in a PHP script?
>
> Hi,
> I created functions (using PL/pgSQL) in my PostGreSQL database and now I
try
> to call them in my PHP script but it doesn't succeed.
> I can open a connection to the database, run a simple query and get the
> result, but I don't know how to do with the functions.
> Anybody could help me?
>
> --
> Sébastien BAUDRY - DBA Oracle/MS-SQL & Project Manager
> BAUDRY ENGINEERING BT. H-1025 Budapest Verhalom utca. 31/D. I/8.
> @.: sebastien(dot)baudry(at)baudry-engineering(dot)com
> mobile.: +36-30-392-0279 / tel: +36-1-326-0241 / fax: +36-1-326-0241
> http://www.baudry-engineering.com
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend
>

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

In response to

Browse pgsql-php by date

  From Date Subject
Next Message scott.marlowe 2003-10-02 19:45:45 Re: connection error
Previous Message Ahmad Sentri 2003-10-02 08:46:12 Re: How to call a PL/pgSQL function in a PHP script