definition:
|
getEntryWithKey :: Show kid => EntityDescription a -> Column k
-> (kid -> Value k) -> kid -> DBAction a
getEntryWithKey endescr keycolumn keyval key = do
vals <- getEntries All endescr
(Criteria (equal (colNum keycolumn 0) (keyval key)) Nothing)
[]
Nothing
if null vals then failDB keyNotFoundError
else return (head vals)
where
keyNotFoundError =
DBError UnknownError $
"'" ++ getTable endescr ++ "' entity with key '" ++
show key ++ "' not available"
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Gets an entry of an entity with a given key.
--- @param endescr - the EntityDescription describing the entities
--- @param keycolumn - the column containing the primary key
--- @param keyval - the id-to-value function for entities
--- @param key - the key of the entity to be fetched
--- @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:
|
getEntryWithKey
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show c => Database.CDBI.Description.EntityDescription a
-> Database.CDBI.Description.Column b -> (c -> Database.CDBI.Criteria.Value b)
-> c -> 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
|