for (int i = 0; i < columnTypes.length; i++) {
try {
String value = SqlUtils.sqlValueToString(rs, i + 1, columnTypes[i]);
result.add(value);
} catch (Exception e) {
throw new ExtractException("ERROR ## get columnName has an error", e);
}
}
return result;
}