Class: SQLite3::ResultSet
- Inherits:
-
Object
- Object
- SQLite3::ResultSet
- Includes:
- Enumerable
- 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
The ResultSet object encapsulates the enumerability of a query’s output. It is a simple cursor over the data that the query returns. It will very rarely (if ever) be instantiated directly. Instead, clients should obtain a ResultSet instance via Statement#execute.
Defined Under Namespace
Classes: ArrayWithTypes, ArrayWithTypesAndFields, HashWithTypesAndFields
Instance Method Summary collapse
-
#close ⇒ Object
Closes the statement that spawned this result set.
-
#closed? ⇒ Boolean
Queries whether the underlying statement has been closed or not.
-
#columns ⇒ Object
Returns the names of the columns returned by this result set.
-
#each ⇒ Object
Required by the Enumerable mixin.
-
#each_hash ⇒ Object
Provides an internal iterator over the rows of the result set where each row is yielded as a hash.
-
#eof? ⇒ Boolean
Query whether the cursor has reached the end of the result set or not.
-
#initialize(db, stmt) ⇒ ResultSet
constructor
Create a new ResultSet attached to the given database, using the given sql text.
-
#next ⇒ Object
Obtain the next row from the cursor.
-
#next_hash ⇒ Object
Return the next row as a hash.
-
#reset(*bind_params) ⇒ Object
Reset the cursor, so that a result set which has reached end-of-file can be rewound and reiterated.
-
#types ⇒ Object
Returns the types of the columns returned by this result set.
Constructor Details
#initialize(db, stmt) ⇒ ResultSet
Create a new ResultSet attached to the given database, using the given sql text.
72 73 74 75 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 72 def initialize db, stmt @db = db @stmt = stmt end |
Instance Method Details
#close ⇒ Object
Closes the statement that spawned this result set. Use with caution! Closing a result set will automatically close any other result sets that were spawned from the same statement.
149 150 151 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 149 def close @stmt.close end |
#closed? ⇒ Boolean
Queries whether the underlying statement has been closed or not.
154 155 156 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 154 def closed? @stmt.closed? end |
#columns ⇒ Object
Returns the names of the columns returned by this result set.
164 165 166 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 164 def columns @stmt.columns end |
#each ⇒ Object
Required by the Enumerable mixin. Provides an internal iterator over the rows of the result set.
132 133 134 135 136 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 132 def each while node = self.next yield node end end |
#each_hash ⇒ Object
Provides an internal iterator over the rows of the result set where each row is yielded as a hash.
140 141 142 143 144 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 140 def each_hash while node = next_hash yield node end end |
#eof? ⇒ Boolean
Query whether the cursor has reached the end of the result set or not.
86 87 88 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 86 def eof? @stmt.done? end |
#next ⇒ Object
Obtain the next row from the cursor. If there are no more rows to be had, this will return nil
. If type translation is active on the corresponding database, the values in the row will be translated according to their types.
The returned value will be an array, unless Database#results_as_hash has been set to true
, in which case the returned value will be a hash.
For arrays, the column names are accessible via the fields
property, and the column types are accessible via the types
property.
For hashes, the column names are the keys of the hash, and the column types are accessible via the types
property.
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 103 def next if @db.results_as_hash return next_hash end row = @stmt.step return nil if @stmt.done? row = @db.translate_from_db @stmt.types, row if row.respond_to?(:fields) # FIXME: this can only happen if the translator returns something # that responds to `fields`. Since we're removing the translator # in 2.0, we can remove this branch in 2.0. row = ArrayWithTypes.new(row) else # FIXME: the `fields` and `types` methods are deprecated on this # object for version 2.0, so we can safely remove this branch # as well. row = ArrayWithTypesAndFields.new(row) end row.fields = @stmt.columns row.types = @stmt.types row end |
#next_hash ⇒ Object
Return the next row as a hash
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 169 def next_hash row = @stmt.step return nil if @stmt.done? # FIXME: type translation is deprecated, so this can be removed # in 2.0 row = @db.translate_from_db @stmt.types, row # FIXME: this can be switched to a regular hash in 2.0 row = HashWithTypesAndFields[*@stmt.columns.zip(row).flatten] # FIXME: these methods are deprecated for version 2.0, so we can remove # this code in 2.0 row.fields = @stmt.columns row.types = @stmt.types row end |
#reset(*bind_params) ⇒ Object
Reset the cursor, so that a result set which has reached end-of-file can be rewound and reiterated.
79 80 81 82 83 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 79 def reset( *bind_params ) @stmt.reset! @stmt.bind_params( *bind_params ) @eof = false end |
#types ⇒ Object
Returns the types of the columns returned by this result set.
159 160 161 |
# File 'lib/sqlite3-1.5.3-arm64-darwin/lib/sqlite3/resultset.rb', line 159 def types @stmt.types end |