leaving out paramTypes parameter - Mailing list pgsql-interfaces

From Andro
Subject leaving out paramTypes parameter
Date
Msg-id da7021e0608140638w4bc5a22ey4d358d649442c8f5@mail.gmail.com
Whole thread Raw
Responses Re: leaving out paramTypes parameter
List pgsql-interfaces
Hi,

from the documentation, here's PQexecParams prototype

PGresult *PQexecParams(PGconn *conn,                      const char *command,                      int nParams,
             const Oid *paramTypes,                      const char * const *paramValues,                      const
int*paramLengths,                      const int *paramFormats,                      int resultFormat);
 

and PQprepare's

PGresult *PQprepare(PGconn *conn,                   const char *stmtName,                   const char *query,
        int nParams,                   const Oid *paramTypes);
 

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?
What are known issues? Or should we try at all costs to specify
parameters type?

Thanks

Charles


pgsql-interfaces by date:

Previous
From: Georgi Kolev
Date:
Subject: Re: PQoidValue - get last ID of primary key after INSERT - small
Next
From: Tom Lane
Date:
Subject: Re: leaving out paramTypes parameter