| The PostgreSQL 9.0 Reference Manual - Volume 2 - Programming Guide
by The PostgreSQL Global Development Group Paperback (6"x9"), 478 pages ISBN 9781906966065 RRP £14.95 ($19.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
13.1.12 SPI_getargtypeid
Name
SPI_getargtypeid -- return the data type OID for an argument of
a plan prepared by SPI_prepare
Synopsis
Oid SPI_getargtypeid(SPIPlanPtr plan, int argIndex)
Description
SPI_getargtypeid returns the OID representing the type
id for the argIndex'th argument of a plan prepared by
SPI_prepare. First argument is at index zero.
Arguments
SPIPlanPtrplan-
execution plan (returned by
SPI_prepare) intargIndex- zero based index of the argument
Return Value
The type id of the argument at the given index.
If the plan is NULL or invalid,
or argIndex is less than 0 or
not less than the number of arguments declared for the
plan,
SPI_result is set to SPI_ERROR_ARGUMENT
and InvalidOid is returned.
| ISBN 9781906966065 | The PostgreSQL 9.0 Reference Manual - Volume 2 - Programming Guide | See the print edition |