DBResult execPrepared(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. If none of the parameters are NULL, then the other version of this function may be easier to use.
Usage
Execute a prepared statement, replacing parameters as specified. A single prepared statement may be used by multiple execPrepared functions, which increases efficiency.