DBResult execPrepared(DBStatement<a> statement, [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. This version of the function may not be used to insert NULL values.
Usage
Execute a prepared statement, replacing parameters as specified. A single prepared statement may be used by multiple execPrepared functions, which increases efficiency.