Re: Error on query execution - Mailing list pgsql-general

From Tom Lane
Subject Re: Error on query execution
Date
Msg-id 225733.1741142220@sss.pgh.pa.us
Whole thread Raw
In response to Error on query execution  (Igor Korot <ikorot01@gmail.com>)
Responses Re: Error on query execution
Re: Error on query execution
Re: Error on query execution
List pgsql-general
Igor Korot <ikorot01@gmail.com> writes:
>     binaryIntVal = htonl( (uint32_t) type );
>     paramValues[0] = (char *) &binaryIntVal;
>     paramLengths[0] = sizeof( binaryIntVal );
>     paramFormats[0] = 1;

You're apparently trying to pass this parameter as an int4 ...

>     res = PQexecParams( m_db, "SELECT * FROM abcatfmt WHERE abf_type =
> $1", 1, nullptr, paramValues, paramLengths, paramFormats, 1 );

... but given that you didn't specify any data type, I think the
parser will fall back to assuming that $1 is the same type as
"abf_type", whatever that is.  Passing data in binary is not at all
forgiving about getting the data type right.

            regards, tom lane



pgsql-general by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: Messages o Terminal
Next
From: me nefcanto
Date:
Subject: Quesion about querying distributed databases