class PG::Result

def field_names_as(type)

This method is equal to #field_name_type= , but returns self, so that calls can be chained.

+type+: a Symbol defining the field name type.

Set the data type for all field name returning methods.
def field_names_as(type)
	self.field_name_type = type
	return self
end