Re: leaving out paramTypes parameter - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: leaving out paramTypes parameter
Date
Msg-id 9625.1155569002@sss.pgh.pa.us
Whole thread Raw
In response to leaving out paramTypes parameter  (Andro <andromede@gmail.com>)
List pgsql-interfaces
Andro <andromede@gmail.com> writes:
> they both require "paramTypes" parameter, but documentation says "If
> paramTypes is NULL, or any particular element in the array is zero,
> the server assigns a data type to the parameter symbol in the same way
> it would do for an untyped literal string."

> How reliable is that? Can we really leave out this parameter anytime?

Like it says, you get the same results you would get from writing a
literal string 'foo' where the parameter symbol is.  If you like,
you can force the type decision with a cast in the query text, eg
"SELECT ... WHERE x = $1::int8 ... "

In some ways this is better than using paramTypes because you don't
have to mess with numeric OIDs for data types.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: Andro
Date:
Subject: leaving out paramTypes parameter
Next
From: Gregory Stark
Date:
Subject: Re: PQoidValue - get last ID of primary key after INSERT - small