Index of the sresults module
-
m
sqlobject.sresults
...
- a __package__ ...
-
C
SelectResults
...
- a throughTo ...
- f orderBy ...
- f newClause ...
- f avg ...
- f __init__ ...
- f accumulateOne ... - Making the sum/min/max/avg of a given select result attribute. attribute can be a column name (like 'a_column') or a dot-q attribute (like Table.q.aColumn)
- f distinct ...
- f sum ...
- f lazyColumns ...
- f reversed ...
- f __getitem__ ...
- f max ...
- f clone ...
- f __iter__ ...
- f queryForSelect ...
- f getOne ... - If a query is expected to only return a single value, using .getOne() will return just that value.
- f accumulate ... - Use accumulate expression(s) to select result using another SQL select through current connection. Return the accumulate result
- f count ... - Counting elements of current select results
- f lazyIter ... - Returns an iterator that will lazily pull rows out of the database and return SQLObject instances
- f min ...
- f accumulateMany ... - Making the expressions for count/sum/min/max/avg of a given select result attributes. attributes must be a list/tuple of pairs (func_name, attribute); attribute can be a column name (like 'a_column') or a dot-q attribute (like Table.q.aColumn)
- f filter ...
- f connection ...
- f limit ...