Class: SQLite3::ResultSet::ArrayWithTypesAndFields
- Inherits:
-
Array
- Object
- Array
- SQLite3::ResultSet::ArrayWithTypesAndFields
- Defined in:
- lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb,
lib/sqlite3-1.5.3-x86_64-darwin/lib/sqlite3/resultset.rb
Overview
:nodoc:
Instance Attribute Summary collapse
Instance Attribute Details
#fields ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 30 def fields warn(<<-eowarn) if $VERBOSE #{caller[0]} is calling #{self.class}#fields. This method 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 |
#types ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 21 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 |