definition:
|
getColumnFourTuple :: [SetOp]
-> [FourColumnSelect a b c d]
-> [Option]
-> Maybe Int
-> DBAction [(a,b,c,d)]
getColumnFourTuple _ [] _ _ = return []
getColumnFourTuple setops (s:sels) options limit = do
let query = ((foldl (\quest (so, sel) -> quest ++ trSetOp so ++
trFourTupleSelectQuery sel)
(trFourTupleSelectQuery s)
(zip setops sels))
++ trOption options ++ trLimit limit++" ;")
(fun1, fun2, fun3, fun4) = getFourTupleValFuncs s
vals <- select query [] (getFourTupleTypes s)
return $ map (\ [val1, val2, val3, val4] -> ((fun1 val1),
(fun2 val2),
(fun3 val3),
(fun4 val4)))
vals
|
documentation:
|
--- Gets four Columns from the database.
--- @param setops - list of Setoperators to combine queries if more than one is
--- given, can be empty otherwise
--- @param sels - list of FourColumnSelects to specify queries, if there
--- are more requests than can be combined with setoperators
--- they will be ignored
---@param options - order-by-clause for whole query
---@param limit - value to reduce number of returned rows
---@return a `DBAction`t with a list of a-Values as parameter
--- (where a is the type of the column)
|
iotype:
|
{(_,{[]},_,_) |-> _ || (_,{:},_,_) |-> _}
|
signature:
|
[Database.CDBI.QueryTypes.SetOp]
-> [Database.CDBI.QueryTypes.FourColumnSelect a b c d]
-> [Database.CDBI.Criteria.Option] -> Prelude.Maybe Prelude.Int
-> Database.CDBI.Connection.DBAction [(a, b, c, d)]
|