definition:
|
newDBEntry :: Show a => KeyPred a -> a -> Transaction Key
newDBEntry keyPred info =
modify keyPred "insert into"
("values (" ++ commaSep (infoVals keyPred info) ++ ")") |>>
getDB (Query $ selectInt keyPred "last_insert_rowid()" "")
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Stores new information in the database and yields the newly
--- generated key.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
newDBEntry
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show a => (Prelude.Int -> a -> Dynamic) -> a -> Transaction Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|