definition:
|
runQueryOnDB :: String -> DBAction a -> IO a
runQueryOnDB dbname dbaction =
runWithDB dbname dbaction >>= return . fromSQLResult
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Executes a DB action on a database and returns the result.
--- An error is raised if the DB action produces an error.
--- @param dbname - name of the database (e.g. "database.db")
--- @param dbaction - a database action
--- @return the result of the action
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
runQueryOnDB
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Database.CDBI.Connection.DBAction a -> Prelude.IO a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|