first = true;
for (Method method : data.getClass().getMethods())
{
cf = method.getAnnotation(CormObjectField.class);
if (cf != null && !cf.readOnly() && !cf.isAutogenerated())
{
sql.append((first ? "" : ", "));
sql.append(getFormatedValue(method, data));
first = false;