DBIncResult<a> incExecPrepared(DBStatement<a> statement, [Maybe<String> ] params)
Arguments
statement: The prepared database statementparams: A list of parameters to be inserted into the query. An Exception may be thrown if the number of parameters does not match the expected number.nothingshould be used for parameters that are to be replaced byNULL.
Usage
Incrementally execute a prepared statement, replacing parameters as specified. A single prepared statement may be used by multiple incExecPrepared functions, which increases efficiency.