class SQLite3::ResultSet::ArrayWithTypesAndFields

:nodoc:

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