Method: SQLite3::ResultSet::HashWithTypesAndFields#types

Defined in:
lib/sqlite3/resultset.rb

#typesObject

[View source]

46
47
48
49
50
51
52
53
# File 'lib/sqlite3/resultset.rb', line 46

def types
  warn(<<-eowarn) if $VERBOSE
#{caller[0]} is calling #{self.class}#types.  This method 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