Re: stored procs in postgresql

From: "A(dot) Kretschmer" <akretschmer(at)despammed(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: stored procs in postgresql
Date: 2005-09-25 07:47:49
Message-ID: 20050925074749.GA11017@webserv.wug-glas.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

am 24.09.2005, um 21:10:48 -0700 mailte Cere Davis folgendes:
> thanks,
>
> I didn't even know about the string concatination function for this.
> Unfortunately, it was of no help. Specificly I am trying this, with
> the following error:
>
> SQL error:
>
>
> ERROR: syntax error at or near "' || $2 || '" at character 110
>
> In statement:
>
>
> CREATE FUNCTION "getcensusbound" (geometry, character) RETURNS
> character AS 'SELECT bound_table.name

1. you should better use dollar-quoting
Read:
http://www.postgresql.org/docs/8.0/static/plpgsql-development-tips.html

> FROM '' || $2 || '' bound_table
> WHERE bound_table.the_geom::bytea != ''null''::bytea AND
> contains(geometryn(bound_table.the_geom, 1), $1) = true;' LANGUAGE
> "sql"

2. you must build a string with your query and execute the string.
Read:
http://www.postgresql.org/docs/8.0/static/plpgsql-statements.html#PLPGSQL-STATEMENTS-EXECUTING-DYN

> On 9/24/05, Chris Browne <cbbrowne(at)acm(dot)org> wrote:
> > ceremona(at)gmail(dot)com writes:

3. please learn to quote.
Read: http://learn.to/quote
http://www.netmeister.org/news/learn2quote.html

Regards, Andreas
--
Andreas Kretschmer (Kontakt: siehe Header)
Heynitz: 035242/47212, D1: 0160/7141639
GnuPG-ID 0x3FFF606C http://wwwkeys.de.pgp.net
=== Schollglas Unternehmensgruppe ===

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Fuhr 2005-09-26 00:05:41 Re: Updating cidr column with network operator
Previous Message Ferindo Middleton Jr 2005-09-25 04:46:52 Re: redundancy in CHECK CONSTRAINTs