Johsh,
On Feb 28, 2006, at 12:53 AM, Josh Close wrote:
> I'm getting row description and row data back from Postgres, but I
> can't figure out how to get the datatype of the row field.
>
> There is a type modifier and an oid of a the field's data type, but
> I haven't found anywhere those match up with Postgres data types.
>
> Where can I get the data type from the row description?
The oid maps to the pg_type table:
select oid, typname from pg_type order by oid;
John DeSoi, Ph.D.
http://pgedit.com/
Power Tools for PostgreSQL