definition:
|
persistentSQLite :: DBFile -> TableName -> [ColName] -> KeyPred a
persistentSQLite db table cols _ _
| null cols = DBInfo db table ["info"]
| "_rowid_" `elem` cols = error "columns must not be called _rowid_"
| otherwise = DBInfo db table cols
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- This function is used instead of <code>dynamic</code> or
--- <code>persistent</code> to declare predicates whose facts are stored
--- in an SQLite database.
---
--- If the provided database or the table do not exist they are created
--- automatically when the declared predicate is accessed for the first time.
---
--- Multiple column names can be provided if the second argument of
--- the predicate is a tuple with a matching arity. Other record types
--- are not supported. If no column names are provided a table with a
--- single column called <code>info</code> is created. Columns of name
--- <code>_rowid_</code> are not supported and lead to a run-time
--- error.
---
--- @param dbFile - the name of the associated database file
--- @param tableName - the name of the associated database table
--- @param colNames - the column names of the associated database table
|
failfree:
|
(_, _, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_) |-> {DBInfo}}
|
name:
|
persistentSQLite
|
precedence:
|
no precedence defined
|
result-values:
|
{DBInfo}
|
signature:
|
String -> String -> [String] -> Prelude.Int -> a -> Dynamic
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|