columnTypeName method

String columnTypeName(
  1. int column
)

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));
}