Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | DalÅ¡Ã |
pg_field_is_null
Popis
int pg_field_is_null ( resource result, int row, mixed field )int pg_field_is_null ( resource result, mixed field )
pg_field_is_null() tests if a field in a PostgreSQL result resource is SQL NULL or not.
Poznámka: This function used to be called pg_fieldisnull().
Seznam parametrů
result
PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (among others).
row
Row number in result to fetch. Rows are numbered from 0 upwards. If omitted, current row is fetched.
field
Field number (starting from 0) as an integer or the field name as a string.
Návratové hodnoty
Returns 1 if the field in the given row is SQL NULL, 0 if not. FALSE is returned if the row is out of range, or upon any other error.
PÅ™Ãklady
PÅ™edcházejÃcà | Domů | DalÅ¡Ã |
pg_fetch_row | Nahoru |