Description
mixed
pg_fetch_result ( resource result, int row, mixed field)
pg_fetch_result() returns values from a
result resource returned by
pg_query()_ row
is integer_ field is field name (string)
or field index (integer)_ The row
and field specify what cell in the table
of results to return_ Row numbering starts from 0_ Instead of
naming the field, you may use the field index as an unquoted
number_ Field indices start from 0_
PostgreSQL has many built in types and only the basic ones are
directly supported here_ All forms of integer
types are returned as integer values_ All forms of
float, and real types are returned as float values_
Boolean is returned as "t" or "f"_ All
other types, including arrays are returned as strings formatted
in the same default PostgreSQL manner that you would see in the
psql program_