definition:
|
saveDBTerms :: Show a => EntityDescription a -> String -> String -> IO ()
saveDBTerms endescr dbname path = do
allentries <- runQueryOnDB dbname (getAllEntries endescr)
let savefile = path </> getTable endescr ++ ".terms"
showentries = unlines (map show allentries)
if null path
then putStrLn showentries -- show only when the is empty
else do --putStr $ "Saving into '" ++ savefile ++ "'..."
writeFile savefile showentries
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Saves all entries of an entity as terms in a file.
--- @param endescr - the EntityDescription of the entities to be saved
--- @param dbname - name of the database (e.g. "database.db")
--- @param path - directory where term file is written
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
saveDBTerms
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Show a => Database.CDBI.Description.EntityDescription a -> String
-> String -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|