updateAcc.add(acc);
} else {
selectAcc.add(acc);
}
columnBindings[i] = new SymbolAccessSetBinding();
columnBindings[i].adapter = new DbParameterAccessorTypeAdapter(acc, this);
}
// weird jdk syntax, method param is the type of array.
selectAccessors = selectAcc.toArray(new DbParameterAccessor[0]);
updateAccessors = updateAcc.toArray(new DbParameterAccessor[0]);
}