definition:
|
runWithDB :: String -> DBAction a -> IO (SQLResult a)
runWithDB dbname dbaction =
ensureSQLiteConnection dbname >>= runDBAction dbaction
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Executes an action dependent on a connection on a database
--- by connecting to the datebase. The connection will be kept open
--- and re-used for the next action to this database.
--- @param str - name of the database (e.g. "database.db")
--- @param action - an action parameterized over a database connection
--- @return the result of the action
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
runWithDB
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> DBAction a -> Prelude.IO (Prelude.Either DBError a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|