// It creates java.util.Dates in Local time-zone, but assumes the DB date is UTC.
final String string = set.getString(columnName);
final DateTime utcDate = new DateTime(string, Defaults.getTimeZone());
return new Date(utcDate);
} catch (final SQLException e) {
throw new SqlObjectStoreException(e);
}
}