Re: PQexecParams not seeing params - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: PQexecParams not seeing params
Date
Msg-id 11021.1151464870@sss.pgh.pa.us
Whole thread Raw
In response to PQexecParams not seeing params  (Paul Forgey <paulf@aphrodite.com>)
List pgsql-interfaces
Paul Forgey <paulf@aphrodite.com> writes:
> At least when talking to a 7.4 server, the following statement:

> res = PQexecParams (pgc, "FETCH 100 $1", 1, NULL, paramValues, NULL,  
> NULL, 1)

> results in "syntax error at or near $1 at character 11".

Well, that would fail regardless because the FETCH syntax requires FROM
or IN between the count and the cursor name; but your big problem is
that parameter symbols can only stand for data values.  Not table names,
not field names, not (as in this case) cursor names.  This must be so
because the backend is supposed to be able to infer the meaning of the
query --- at least to the extent of being able to determine the result
columns, for instance --- before it has the actual values of the
parameters.

You might want to consider assembling the FETCH command as a single
string, along the lines of sprintf(buffer, "FETCH 100 FROM %s", cname)
and sending that.  SQL parameters won't help.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: Paul Forgey
Date:
Subject: PQexecParams not seeing params
Next
From: "Rodrigo Sakai"
Date:
Subject: Creating a new type