class MergedResult(IteratorResult):
A _engine.Result
that is merged from any number of
_engine.Result
objects.
Returned by the _engine.Result.merge
method.
Method | __init__ |
Undocumented |
Method | _soft_close |
Undocumented |
Instance Variable | _attributes |
Undocumented |
Instance Variable | _results |
Undocumented |
Instance Variable | _source_supports_scalars |
Undocumented |
Instance Variable | _unique_filter_state |
Undocumented |
Instance Variable | _yield_per |
Undocumented |
Instance Variable | closed |
Undocumented |
Inherited from IteratorResult
:
Method | _fetchall_impl |
Undocumented |
Method | _fetchiter_impl |
Undocumented |
Method | _fetchmany_impl |
Undocumented |
Method | _fetchone_impl |
Undocumented |
Method | _raise_hard_closed |
Undocumented |
Method | _raw_row_iterator |
Return a safe iterator that yields raw row data. |
Instance Variable | _hard_closed |
Undocumented |
Instance Variable | _metadata |
Undocumented |
Instance Variable | iterator |
Undocumented |
Instance Variable | raw |
Undocumented |
Inherited from Result
(via IteratorResult
):
Method | __iter__ |
Undocumented |
Method | __next__ |
Undocumented |
Method | _getter |
return a callable that will retrieve the given key from a .Row . |
Method | _tuple_getter |
return a callable that will retrieve the given keys from a .Row . |
Method | all |
Return all rows in a list. |
Method | close |
close this _result.Result . |
Method | columns |
Establish the columns that should be returned in each row. |
Method | fetchall |
A synonym for the _engine.Result.all method. |
Method | fetchmany |
Fetch many rows. |
Method | fetchone |
Fetch one row. |
Method | first |
Fetch the first row or None if no row is present. |
Method | freeze |
Return a callable object that will produce copies of this .Result when invoked. |
Method | mappings |
Apply a mappings filter to returned rows, returning an instance of _result.MappingResult . |
Method | merge |
Merge this .Result with other compatible result objects. |
Method | next |
Undocumented |
Method | one |
Return exactly one row or raise an exception. |
Method | one_or_none |
Return at most one result or raise an exception. |
Method | partitions |
Iterate through sub-lists of rows of the size given. |
Method | scalar |
Fetch the first column of the first row, and close the result set. |
Method | scalar_one |
Return exactly one scalar result or raise an exception. |
Method | scalar_one_or_none |
Return exactly one or no scalar result. |
Method | scalars |
Return a _result.ScalarResult filtering object which will return single elements rather than _row.Row objects. |
Method | unique |
Apply unique filtering to the objects returned by this _engine.Result . |
Method | yield_per |
Configure the row-fetching strategy to fetch num rows at a time. |
Class Variable | _row_logging_fn |
Undocumented |
Inherited from _WithKeys
(via IteratorResult
, Result
):
Method | keys |
Return an iterable view which yields the string keys that would be represented by each .Row . |
Inherited from ResultInternal
(via IteratorResult
, Result
):
Method | _allrows |
Undocumented |
Method | _column_slices |
Undocumented |
Method | _iter_impl |
Undocumented |
Method | _iterator_getter |
Undocumented |
Method | _manyrow_getter |
Undocumented |
Method | _next_impl |
Undocumented |
Method | _onerow_getter |
Undocumented |
Method | _only_one_row |
Undocumented |
Method | _raw_all_rows |
Undocumented |
Method | _row_getter |
Undocumented |
Method | _unique_strategy |
Undocumented |
Class Variable | _post_creational_filter |
Undocumented |
Class Variable | _real_result |
Undocumented |
Instance Variable | _generate_rows |
Undocumented |
Inherited from InPlaceGenerative
(via IteratorResult
, Result
, ResultInternal
):
Method | _generate |
Undocumented |