Part of vmc.contrib.axiom.store View In Hierarchy
Method | __init__ | Create a MultipleItemQuery. This is typically done via Store.query .
|
Method | count | Count the number of distinct results of the wrapped query. |
Method | distinct |
Inherited from BaseQuery:
Method | cloneQuery | Create a similar-but-not-identical copy of this query with certain |
Method | __repr__ | Undocumented |
Method | explain | A debugging API, exposing SQLite's 'EXPLAIN' statement. |
Method | _computeFromClause | Generate the SQL string which follows the "FROM" string and before the |
Method | _sqlAndArgs | Undocumented |
Method | _runQuery | Undocumented |
Method | locateCallSite | Undocumented |
Method | _selectStuff | Return a generator which yields the massaged results of this query with |
Method | __iter__ | Iterate the results of this query. |
Method | next | This method is deprecated, a holdover from when queries were iterators, |
Parameters | row | an n-tuple, where n is the total number of columns specified by all the item types in this query. |
Returns | a tuple of instances of the types specified by this query. |
Returns | an int representing the number of distinct results.
|