Re: PQexecParams and CURSOR

From: "Laurent Marzullo" <laurent(dot)marzullo(at)atosorigin(dot)com>
To: "Michael Fuhr" <mike(at)fuhr(dot)org>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: PQexecParams and CURSOR
Date: 2005-01-17 15:44:50
Message-ID: NDEKIMJLKBNGEIOBDFOJIEFBDEAA.laurent.marzullo@atosorigin.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, Jan 17, 2005 at 11:28:57AM +0100, Laurent Marzullo wrote:

> > // res = PQexec( conn , "FETCH 1 FROM MY_CURSOR" );

> The above should work if you uncomment it and comment out or remove
> the other two attempts to execute FETCH.

On my machine (2.6.7-gentoo-r9) and postgreSQL (postmaster --version) :
7.4.6

the command above gave:
FETCH failed: ERROR: no value found for parameter 1

> > /*
> > res = PQexecParams(conn,
> > "FETCH 1 FROM MY_CURSOR",
> > 0,
> > NULL,
> > NULL,
> > NULL,
> > NULL,
> > 0);
> > */

> The above should also work if you uncomment it and comment out or
> remove the other two.

This one alose gave the same result as the preceding one:

FETCH failed: ERROR: no value found for parameter 1

My I install a version greater than 7.4.6 ?

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

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bo Lorentsen 2005-01-17 15:46:31 Re: Index optimization ?
Previous Message Bo Lorentsen 2005-01-17 15:30:06 Re: Index optimization ?