definition:
|
newDBKeyEntry :: Show a => KeyPred a -> Key -> a -> Transaction ()
newDBKeyEntry keyPred key info =
getDB (existsDBKey keyPred key) |>>= \b ->
if b
then errorT . TError DuplicateKeyError $
"database already contains entry with key: " ++ show key
else modify keyPred "insert into"
("values (" ++ commaSep (infoVals keyPred info) ++ ")") |>>
getDB (Query $ selectInt keyPred "last_insert_rowid()" "") |>>= \k ->
modify keyPred "update" $
"set _rowid_ = " ++ show key ++ " where _rowid_ = " ++ show k
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Stores a new entry in the database under a given key.
--- The transaction fails if the key already exists.
--- @param db - the database (a dynamic predicate)
--- @param key - the key of the new entry (an integer)
--- @param info - the information to be stored in the new entry
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
newDBKeyEntry
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show a => (Prelude.Int -> a -> Dynamic) -> Prelude.Int -> a
-> Transaction ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|