class SQLite3::ResultSet::HashWithTypesAndFields

:nodoc:
result.
The class of which we return an object in case we want a Hash as

def [] key

def [] key
  key = fields[key] if key.is_a? Numeric
  super key
end

def fields

def fields
  warn(<<-eowarn) if $VERBOSE
er[0]} is calling #{self.class}#fields.  This method will be removed in
3 version 2.0.0, please call the `columns` method on the SQLite3::ResultSet
 that created this object
  eowarn
  @fields
end

def types

def types
  warn(<<-eowarn) if $VERBOSE
er[0]} is calling #{self.class}#types.  This method will be removed in
3 version 2.0.0, please call the `types` method on the SQLite3::ResultSet
 that created this object
  eowarn
  @types
end