definition:
|
printSQLResults :: Show a => SQLResult [a] -> IO ()
printSQLResults (Left err) = putStrLn $ show err
printSQLResults (Right res) = mapM_ print res
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Print an 'SQLResult' list, i.e., print either the 'DBError'
--- or the list of result elements.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Left}) |-> _ || (_,{Right}) |-> _}
|
name:
|
printSQLResults
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show a => Prelude.Either DBError [a] -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|