fork method
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;
}
Reproduce a partial query to use in a loop or other dynamic pattern.
InsertQuery fork() {
var q = InsertQuery(table);
q.importSubstitutionValues(substitutionValues);
q._insert = _insert.clone();
return q;
}