pg_field_table()
pg_field_table - Returns the name or oid of the tables field
Syntax
mixed pg_field_table (
resource $result,
int $field_number,
bool $oid_only)
Arguments
- result - PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (among others).
- field_number - Field number, starting from 0.
- oid_only - By default the tables name that field belongs to is returned but if oid_only is set to TRUE, then the oid will instead be returned.
Description
pg_field_table() returns the name of the table that field belongs to, or the table's oid if oid_only is TRUE.
Version
PHP 5.2.0
Return value
On success either the fields table name or oid. Or, FALSE on failure.