columnTypeName method
Returns the column name
Implementation
String columnTypeName(int column) {
if (column < 0 || column >= columns)
throw LibPqException("Column index out of range!");
return psql.pqftypename(psql.pq.PQftype(res, column));
}