fork method

InsertQuery fork ()

Reproduce a partial query to use in a loop or other dynamic pattern.

Implementation

InsertQuery fork() {
  var q = InsertQuery(table);
  q.importSubstitutionValues(substitutionValues);
  q._insert = _insert.clone();
  return q;
}