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

From Igor Korot
Subject Re: Error on query execution
Date
Msg-id CA+FnnTw5xKm-E2X72qHANha-trXrJmumZt6KGa9tPsSAoZDj_A@mail.gmail.com
Whole thread Raw
In response to Re: Error on query execution  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Hi, Tom,

On Tue, Mar 4, 2025 at 8:37 PM Tom Lane <tgl@sss.pgh.pa.us> wrote:
>
> 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.

abf_type is declared as smallnt:

    queries.push_back( L"CREATE TABLE IF NOT EXISTS abcatfmt(abf_name
char(30) NOT NULL, abf_frmt char(254), abf_type smallint, abf_cntr
integer, PRIMARY KEY( abf_name ));" );

Thank you.

>
>                         regards, tom lane



pgsql-general by date:

Previous
From: Ron Johnson
Date:
Subject: Re: Duplicate Key Values
Next
From: Ron Johnson
Date:
Subject: Re: Duplicate Key Values