class SQLite3::ResultSet::ArrayWithTypesAndFields

:nodoc:

def fields

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

def types

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