Re: plpgsql functions vs. embedded queries

From: John DeSoi <desoi(at)pgedit(dot)com>
To: "Wright, George" <George(dot)Wright(at)infimatic(dot)com>
Cc: <pgsql-novice(at)postgresql(dot)org>
Subject: Re: plpgsql functions vs. embedded queries
Date: 2008-09-29 17:15:33
Message-ID: 1A05FF7F-A5F6-43B2-89BF-AB6C7C2352F0@pgedit.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


On Sep 29, 2008, at 9:50 AM, Wright, George wrote:

> Are funtions in plpgsql always slower than embedding sql queries in
> string form in code like PHP?
> I ran several tests and they seemed to always perform that way. I
> would have thought the pre-planning would have made them faster.
> Would re-writing the functions C make them faster than the embedded
> queries?

I'd say no, they should not always be slower. Did you try preparing
your PHP call to the function? Did you mark your function as STABLE if
you are not modifying the database?

John DeSoi, Ph.D.

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Wright, George 2008-09-29 17:45:17 Re: plpgsql functions vs. embedded queries
Previous Message Wright, George 2008-09-29 13:50:49 plpgsql functions vs. embedded queries