2016-01-28 23:31:35 +00:00
|
|
|
module DB
|
2016-01-31 22:40:02 +00:00
|
|
|
# The response of a query performed on a `Database`.
|
|
|
|
#
|
|
|
|
# See `DB` for a complete sample.
|
|
|
|
#
|
|
|
|
# Each `#read` call consumes the result and moves to the next column.
|
2016-02-19 21:42:30 +00:00
|
|
|
# Each column must be read in order.
|
|
|
|
# At any moment a `#move_next` can be invoked, meaning to skip the
|
|
|
|
# remaining, or even all the columns, in the current row.
|
|
|
|
# Also it is not mandatory to consume the whole `ResultSet`, hence an iteration
|
|
|
|
# through `#each` or `#move_next` can be stopped.
|
|
|
|
#
|
|
|
|
# **Note:** depending on how the `ResultSet` was obtained it might be mandatory an
|
|
|
|
# explicit call to `#close`. Check `QueryMethods#query`.
|
2016-01-31 22:40:02 +00:00
|
|
|
#
|
|
|
|
# ### Note to implementors
|
|
|
|
#
|
|
|
|
# 1. Override `#move_next` to move to the next row.
|
2016-06-21 15:10:09 +00:00
|
|
|
# 2. Override `#read?(t)` for all `t` in `DB::TYPES` and any other types the driver should handle.
|
|
|
|
# 3. (Optional) Override `#read(t)` for all `t` in `DB::TYPES` and any other.
|
2016-01-31 22:40:02 +00:00
|
|
|
# 4. Override `#column_count`, `#column_name`.
|
|
|
|
# 5. Override `#column_type`. It must return a type in `DB::TYPES`.
|
2016-01-28 23:31:35 +00:00
|
|
|
abstract class ResultSet
|
2016-02-03 20:10:03 +00:00
|
|
|
include Disposable
|
|
|
|
|
2016-02-03 21:46:37 +00:00
|
|
|
# :nodoc:
|
2016-01-28 23:31:35 +00:00
|
|
|
getter statement
|
|
|
|
|
2016-02-04 00:51:32 +00:00
|
|
|
def initialize(@statement : DB::Statement)
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
|
2016-02-03 22:30:51 +00:00
|
|
|
protected def do_close
|
2016-02-04 00:28:53 +00:00
|
|
|
statement.release_connection
|
2016-02-03 22:30:51 +00:00
|
|
|
end
|
|
|
|
|
2016-02-02 00:55:30 +00:00
|
|
|
# TODO add_next_result_set : Bool
|
|
|
|
|
2016-01-31 22:40:02 +00:00
|
|
|
# Iterates over all the rows
|
2016-01-28 23:51:03 +00:00
|
|
|
def each
|
2016-01-29 19:13:01 +00:00
|
|
|
while move_next
|
2016-01-28 23:51:03 +00:00
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-31 22:40:02 +00:00
|
|
|
# Move the next row in the result.
|
|
|
|
# Return `false` if no more rows are available.
|
|
|
|
# See `#each`
|
2016-01-29 19:13:01 +00:00
|
|
|
abstract def move_next : Bool
|
2016-01-28 23:31:35 +00:00
|
|
|
|
2016-01-30 22:46:43 +00:00
|
|
|
# TODO def empty? : Bool, handle internally with move_next (?)
|
|
|
|
|
2016-01-31 22:40:02 +00:00
|
|
|
# Returns the number of columns in the result
|
2016-01-30 00:57:00 +00:00
|
|
|
abstract def column_count : Int32
|
2016-01-31 22:40:02 +00:00
|
|
|
|
|
|
|
# Returns the name of the column in `index` 0-based position.
|
2016-01-30 00:57:00 +00:00
|
|
|
abstract def column_name(index : Int32) : String
|
2016-01-31 22:40:02 +00:00
|
|
|
|
|
|
|
# Returns the type of the column in `index` 0-based position.
|
|
|
|
# The result is one of `DB::TYPES`.
|
2016-01-30 22:46:43 +00:00
|
|
|
abstract def column_type(index : Int32)
|
2016-01-30 00:57:00 +00:00
|
|
|
|
2016-06-21 15:10:09 +00:00
|
|
|
def read(t)
|
|
|
|
read?(t).not_nil!
|
|
|
|
end
|
2016-02-02 00:55:30 +00:00
|
|
|
|
2016-04-10 18:21:10 +00:00
|
|
|
# Reads the next column as a Nil.
|
|
|
|
def read(t : Nil.class) : Nil
|
|
|
|
read?(Nil)
|
|
|
|
end
|
|
|
|
|
2016-06-21 15:10:09 +00:00
|
|
|
def read?(t)
|
|
|
|
raise "read?(t : #{t}) is not implemented in #{self.class}"
|
2016-04-14 18:18:09 +00:00
|
|
|
end
|
|
|
|
|
2016-06-21 15:10:09 +00:00
|
|
|
# list datatypes that must be supported form the driver
|
|
|
|
# users will call read(String) or read?(String) for nillables
|
|
|
|
{% for t in DB::TYPES %}
|
|
|
|
# Reads the next column as a nillable {{t}}.
|
|
|
|
abstract def read?(t : {{t}}.class) : {{t}}?
|
|
|
|
{% end %}
|
|
|
|
|
2016-02-02 00:55:30 +00:00
|
|
|
# def read_blob
|
|
|
|
# yield ... io ....
|
|
|
|
# end
|
|
|
|
|
|
|
|
# def read_text
|
|
|
|
# yield ... io ....
|
|
|
|
# end
|
2016-01-28 23:31:35 +00:00
|
|
|
end
|
|
|
|
end
|