示例#1
0
 /**
  * Performs a named mapped non-selecting query using a map of parameters. Returns an array of
  * update counts.
  *
  * @since 1.1
  */
 public int[] performNonSelectingQuery(String queryName, Map<String, ?> parameters) {
   return performNonSelectingQuery(MappedExec.query(queryName).params(parameters));
 }
示例#2
0
 /**
  * Performs a named mapped query that does not select rows. Returns an array of update counts.
  *
  * @since 1.1
  */
 public int[] performNonSelectingQuery(String queryName) {
   return performNonSelectingQuery(MappedExec.query(queryName));
 }