Re: How to run a stored PL/pgSQL function?

From: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
To: Ken Winter <ken(at)sunward(dot)org>
Cc: PostgreSQL pg-general List <pgsql-general(at)postgresql(dot)org>
Subject: Re: How to run a stored PL/pgSQL function?
Date: 2005-12-01 04:21:54
Message-ID: 438E7A62.2050403@commandprompt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


> Somewhere in that script, I want to call or invoke (or whatever the
> right verb is) foo and provide its argument, so that when the script
> is being executed, at that point foo is executed and has its desired
> effect on the database. (I don’t need any return from foo.) But I
> don’t know what to put into the script to make this happen.
>

select foo('bar');

or

select * from foo('bar'); if an SRF..

Joshua D. Drake

> ~ TIA
>
> ~ Ken
>

--
The PostgreSQL Company - Command Prompt, Inc. 1.503.667.4564
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: PLphp, PLperl - http://www.commandprompt.com/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2005-12-01 04:52:05 Re: SELECT Generating Row Exclusive Locks?
Previous Message Michael Glaesemann 2005-12-01 04:19:23 Re: How to run a stored PL/pgSQL function?