Re: PREPARE function

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Ion Chalmers Freeman <ionFreeman(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: PREPARE function
Date: 2004-11-08 05:37:46
Message-ID: 20041108053746.GA29968@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Tue, Nov 02, 2004 at 10:25:40AM -0800, Ion Chalmers Freeman wrote:

> Say my function name was redefeat and it took one varchar.
> > prepare redefeat(varchar);
> doesn't work; nor does
> > prepare vote (varchar) as redefeat;
> or
> > prepare(execute redefeat('Bush');
> What is the syntax for prepare? The man page is not sufficiently clear
> for me.

If you want to use a prepared statement then do this:

PREPARE plan_name (varchar) AS SELECT func_name($1);
EXECUTE plan_name ('some string');

If you just want to call the function once then SELECT should suffice:

SELECT func_name('some string');

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Kjetil Haaland 2004-11-08 12:26:55 user defined type
Previous Message Michael Fuhr 2004-11-08 04:24:00 Re: PHP - Tutorial