definition:
|
getEntriesWithColVal :: EntityDescription a -> Column k -> Value k
-> DBAction [a]
getEntriesWithColVal endescr valcolumn val =
getEntries All endescr
(Criteria (equal (colNum valcolumn 0) val) Nothing)
[]
Nothing
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Get all entries of an entity where some column have a given value.
--- @param endescr - the EntityDescription describing the entities
--- @param valcolumn - the column containing the required value
--- @param val - the value required for fetched entities
--- @return a DB result with the entry if everything went right,
--- or an error if something went wrong
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
getEntriesWithColVal
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Database.CDBI.Description.EntityDescription a
-> Database.CDBI.Description.Column b -> Database.CDBI.Criteria.Value b
-> Database.CDBI.Connection.DBAction [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|