Re: how many quotes?

From: Richard Huxton <dev(at)archonet(dot)com>
To: Franco Bruno Borghesi <franco(at)akyasociados(dot)com(dot)ar>, pgsql-general(at)postgresql(dot)org
Subject: Re: how many quotes?
Date: 2003-12-02 17:12:51
Message-ID: 200312021712.51653.dev@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tuesday 02 December 2003 16:12, Franco Bruno Borghesi wrote:
> I need a function to fetch the nextval of a sequence (it should do other
> things, but my problem is the nextval() call), like this:
>
> CREATE OR REPLACE FUNCTION test() RETURNS INTEGER AS '
> DECLARE
> val INTEGER;
> BEGIN
> val:=SELECT nextval(''''''''''usuarios_seq'''''''''');

> I can't figure out how many quotes I should use to call nextval. I've
> read an article at the techdocs about this, but didn't help me. If
> anyone knows the *magic* number, please tell me :)

Two, or escape them:
nextval(''usuarios_seq'')
or
nextval(\'usuarios_seq\')

--
Richard Huxton
Archonet Ltd

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Alex Page 2003-12-02 17:15:47 Re: CREATE TYPE in Postgres 7.3.4
Previous Message Jay O'Connor 2003-12-02 16:45:15 Re: language war