Flux::QueryResult
Parsers and data structures for working with returned query results.
FIXME: support query results containing mutliple schemas
Instance methods
parse(string_or_io : String | IO) : Enumerable(Table(Array(String)))
Parses a response into a set of tables with each row as an Array of Strings.
parse(string_or_io : String | IO, &block : CSV::Row, Array(Column) -> T) : Enumerable(Table(T)) forall T
Parses a response into a set of tables, using the passed block to map to the record types.