definition:
|
someDBKeyProjections :: (Read b, Show b) => KeyPred a -> [Int] -> [ColVal]
-> Query [(Key,b)]
someDBKeyProjections keyPred cols cvs = Query $
do let colnames = commaSep (map ((colNames keyPred) !!) cols)
rows <- selectSomeRows keyPred cvs ("_rowid_,"++colnames)
mapM readKeyInfo rows
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns a list of column projections on
--- those entries that match the given value
--- restrictions for columns. Safe to use even on large databases if
--- the number of results is small.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_) |-> _}
|
name:
|
someDBKeyProjections
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Prelude.Read b, Prelude.Show b) => (Prelude.Int -> a -> Dynamic)
-> [Prelude.Int] -> [ColVal] -> Query [(Prelude.Int, b)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|