Re: SPI_prepare, SPI_execute_plan do not return rows when using parameters - Mailing list pgsql-general

From Dennis Jenkins
Subject Re: SPI_prepare, SPI_execute_plan do not return rows when using parameters
Date
Msg-id 20051005213406.5932.qmail@web81305.mail.yahoo.com
Whole thread Raw
In response to Re: SPI_prepare, SPI_execute_plan do not return rows when using parameters  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general

--- Tom Lane <tgl@sss.pgh.pa.us> wrote:

> Dennis Jenkins <dennis.jenkins@sbcglobal.net>
> writes:
> > My problem is that a query that should be
> returning a
> > row is returning zero rows when I use a
> parametrized
> > query.
>
> You're passing the wrong parameter value, and
> probably not declaring it
> to be the right type either.  CHAROID is not the
> type you think it is
> (BPCHAROID is what you want), and "CStringGetDatum"
> is not the way to
> convert a C string into a char(N) datum.  The most
> bulletproof way
> to do the latter is to use DirectFunctionCall3 to
> invoke bpcharin().
>

Thank you.  I was able to make the code work.  I
changed "CHAROID" to "BPCHAROID" and the bind[0] line
now reads:

        bind[0] = DirectFunctionCall3(bpcharin,
(Datum)transit, 0 /*unused*/ , 9 + sizeof(VARHDRSZ));


However, I must admit that I could find no usable
documentation for either "DirectFunctionCall3" and
"bpcharin" online.  I had to extract the source code
to the engine and read
"src/backend/utils/adt/varchar.c" to learn what
arguments to pass to DFC3.

If I create a sample stored procedure that uses the
above functions and submit it to "the documentation
people", would they want it?  Would they include it in
the docs?  Who are these magic people and where do I
find them?

Thank you very much for your time.  Our code is now
working, so I'm a happy camper.


Dennis Jenkins

pgsql-general by date:

Previous
From: Andrew Sullivan
Date:
Subject: Re: License question[VASCL:A1077160A86]
Next
From: "Jim C. Nasby"
Date:
Subject: Re: Untyped result (setof / rowset) from Functions ?