if (column.isCharOrDateTimeType()) {
sql.getClause().append('\'');
}
// Convert String to appropriate object
column.normalizeValue(param);
// Set the value in the printable clause, the ? in the prepared clause, and prepared clause value
sql.getClause().append(param.getValue().toString());
sql.getPreparedClause().append(buildPreparedParameterSql(column));
sql.getPreparedValues().add(param.getValue());