1SPI_FNUMBER(3)          PostgreSQL 9.2.24 Documentation         SPI_FNUMBER(3)
2
3
4

NAME

6       SPI_fnumber - determine the column number for the specified column name
7

SYNOPSIS

9       int SPI_fnumber(TupleDesc rowdesc, const char * colname)
10

DESCRIPTION

12       SPI_fnumber returns the column number for the column with the specified
13       name.
14
15       If colname refers to a system column (e.g., oid) then the appropriate
16       negative column number will be returned. The caller should be careful
17       to test the return value for exact equality to SPI_ERROR_NOATTRIBUTE to
18       detect an error; testing the result for less than or equal to 0 is not
19       correct unless system columns should be rejected.
20

ARGUMENTS

22       TupleDesc rowdesc
23           input row description
24
25       const char * colname
26           column name
27

RETURN VALUE

29       Column number (count starts at 1), or SPI_ERROR_NOATTRIBUTE if the
30       named column was not found.
31
32
33
34PostgreSQL 9.2.24                 2017-11-06                    SPI_FNUMBER(3)
Impressum