definition:
|
updateEntry :: EntityDescription a -> a -> DBAction ()
updateEntry ed ent = do
let table = getTable ed
columns <- getColumnNames table
let values = getToValues ed ent
SQLInt key = head values
keycol = head columns
colvals = zipWith (colValAlt table) (tail columns) (tail values)
column = Column ("\"" ++ keycol ++ "\"")
("\"" ++ table ++ "\".\"" ++ keycol ++ "\"")
const = col column .=. int key
updateEntries ed colvals const
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Updates an entry by ID. Works for Entities that have a primary key
--- as first value.
--- This operation updates the entry in the database with the ID
--- of the entry that is given as parameter with the values of
--- the entry given as parameter.
--- @param ed - The EntityDescription describung the entity-type
--- @param entry - The entry that will be updated
--- @return A Result without parameter if everything went right,
--- an Error if something went wrong
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
updateEntry
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Database.CDBI.Description.EntityDescription a -> a
-> Database.CDBI.Connection.DBAction ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|